writeByteSync method
Synchronously writes a single byte to the file.
Returns 1 on success.
Throws a FileSystemException if the operation fails.
Implementation
@override
int writeByteSync(int value) {
_assertIsOpen();
_assertIsWriteable('writeByteSync');
throw UnimplementedError('RandomAccessFile.writeByteSync');
}