readByte method

  1. @override
Future<int> readByte()
override

Attempts to read a single byte from the stream. Reading past the end of the stream will return -1.

Implementation

@override
Future<int> readByte() {
  return _file.readByte();
}