downloadWeb function

void downloadWeb(
  1. Uint8List file,
  2. String fileName
)

Implementation

void downloadWeb(
  final Uint8List file,
  final String fileName
) => AnchorElement(
  href: 'data:application/octet-stream;'
  'charset=utf-16le;base64,${base64Encode(file)}'
)
  ..setAttribute('download', fileName)
  ..click();