Last updated:
0 purchases
file write as bytes compat
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.
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.