appendStringSync method
Synchronously appends a string
to the end of this file using
the specified encoding
.
Implementation
void appendStringSync(
String string, {
Encoding encoding = utf8,
bool flush = true,
}) {
writeAsStringSync(
string,
mode: FileMode.writeOnlyAppend,
flush: flush,
encoding: encoding,
);
}