i32 method

int i32()

Implementation

int i32() {
  final int value = u32();
  return value >= 0x80000000 ? value - 0x100000000 : value;
}