file_write_as_bytes_compat 0.0.1
SDKflutter
Platformandroidioswindowslinuxmacos
Workaround for File.writeAsBytes not working bug. see) https://github.com/dart-lang/sdk/issues/36087
Features
File.writeAsBytesが正常に書き込まれない不具合のWorkaround.
https://github.com/dart-lang/sdk/issues/36087
Usage
final file = File('path/to/file');
file.writeAsBytes(bytes); // Not Working Bug!!
file.writeAsBytesCompat(bytes); // Workaround.