readUint8 method

  1. @protected
Future<int> readUint8()
inherited

Read single 8 bit unsigned integer.

Implementation

@protected
Future<int> readUint8() async => (await readBytes(1))[0];