downloadFile function

void downloadFile(
  1. Uint8List bytes,
  2. String fileName,
  3. String mimeType
)

Implementation

void downloadFile(Uint8List bytes, String fileName, String mimeType) {
  throw UnsupportedError("File download not supported on this platform");
}