getInt32 method

int getInt32()

Implementation

int getInt32() {
  var ul = doSigned ? Int8List.fromList(get(4)) : Uint8List.fromList(get(4));
  return ByteConversionUtilities.getInt32(ul, _endian);
}