writeByte method - RandomAccessFile class - dart:io library (original) (raw)
writeByte abstract method
Future<RandomAccessFile> writeByte(
- int value )
Writes a single byte to the file.
Returns a Future<RandomAccessFile>
that completes with this random access file when the write completes.
Implementation
Future<RandomAccessFile> writeByte(int value);