writeStringSync method
override
Synchronously writes a single string to the file using the given Encoding.
Throws a FileSystemException if the operation fails.
Implementation
@override
void writeStringSync(String string, {Encoding encoding = utf8}) =>
delegate.writeStringSync(string, encoding: encoding);