isMaxValue property

  1. @override
bool isMaxValue
override

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

Implementation

@override
bool get isMaxValue => (_h == _MASK2 >> 1) && _m == _MASK && _l == _MASK;