Returns true if and only if this integer is the minimum signed value that can be represented within its bit size.
true
@override bool get isMinValue => _h == _SIGN_BIT_MASK && _m == 0 && _l == 0;