downloadFile method

Future<Map> downloadFile(
  1. Uint8List bytes,
  2. String fileName,
  3. String fileExtension
)

Implementation

Future<Map> downloadFile(Uint8List bytes, String fileName, String fileExtension) async {
  return fileService.saveBytes(bytes, fileName, fileExtension);
}