toInt32 method

  1. @override
Int32 toInt32()
override

Returns an Int32 containing the low 32 bits of this Int64.

Implementation

@override
Int32 toInt32() {
  return Int32(((_m & 0x3ff) << _BITS) | _l);
}