Github Actions

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.