incrediblezayed / file_saver

A simple flutter plugin for saving files in all platforms
https://pub.dev/packages/file_saver
BSD 3-Clause "New" or "Revised" License
75 stars 92 forks source link

not Work saveAs in windows #119

Open rezadevelopers2 opened 1 month ago

rezadevelopers2 commented 1 month ago

`

   await FileSaver.instance.saveAs(
      name: DateTime.now().toString().replaceAll(" ",  "_"),
      ext: ".json",
      mimeType: MimeType.json,
      bytes: Uint8List.fromList(utf8.encode(jsonEncode(jsonStrings))),

    )

`

This code works correctly for Android But for the Windows and web version, the file is not saved and does not give any error