appendBytesSync method
Synchronously appends an array of bytes
to the end of this file.
Also see appendBytes.
Implementation
void appendBytesSync(List<int> bytes, {bool flush = true}) {
writeAsBytesSync(bytes, mode: FileMode.writeOnlyAppend, flush: flush);
}