readInt256 method

Int256 readInt256()

Read Int256.

Implementation

Int256 readInt256() {
  final b = Uint8List.fromList(buffer.skip(_position).take(32).toList());

  _position += 32;
  return Int256(b);
}