Appends an array of bytes to the end of this file.
bytes
Future<void> appendBytes(List<int> bytes, {bool flush = true}) async { await writeAsBytes(bytes, mode: FileMode.writeOnlyAppend, flush: flush); }