6 lines
198 B
Dart
6 lines
198 B
Dart
import 'dart:typed_data';
|
|
|
|
import 'pdf_opener_stub.dart'
|
|
if (dart.library.js_interop) 'pdf_opener_web.dart' as impl;
|
|
|
|
Future<bool> openPdfBytes(Uint8List bytes) => impl.openPdfBytes(bytes); |