writeByteSync method

  1. @override
int writeByteSync(
  1. int value
)
override

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');
}