appendBytes method
Appends an array of bytes
to the content of this file.
Implementation
Future<void> appendBytes(List<int> bytes) async {
final raf = await open(mode: FileMode.writeOnlyAppend);
await raf.writeFrom(bytes);
await raf.close();
}