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 => _i == -2147483648;