writeByte method
- int value
override
Writes a single byte to the file.
Returns a Future<RandomAccessFile>
that completes with this
random access file when the write completes.
Implementation
@override
Future<io.RandomAccessFile> writeByte(int value) async {
await delegate.writeByte(value);
return this;
}