isMinValue property

  1. @override
bool isMinValue
override

Returns true if and only if this integer is the minimum signed value that can be represented within its bit size.

Implementation

@override
bool get isMinValue => _h == _SIGN_BIT_MASK && _m == 0 && _l == 0;