pdf_signature/lib/utils/download_stub.dart

7 lines
206 B
Dart

import 'dart:typed_data';
Future<bool> downloadBytes(Uint8List bytes, {required String filename}) async {
// Not supported on non-web. Return false so caller can fallback to file save.
return false;
}