readInt128 method

Int128 readInt128()

Read Int128.

Implementation

Int128 readInt128() {
  final b = Uint8List.fromList(buffer.skip(_position).take(16).toList());

  _position += 16;
  return Int128(b);
}