negativeInfinity property

int get negativeInfinity

Returns negative infinity as the minimum 64-bit signed integer value.

Implementation: (-1 << 63)

This represents the smallest possible value that can be stored in a 64-bit signed integer: -9,223,372,036,854,775,808

Example:

int minBound = int.negativeInfinity;
print(minBound); // -9223372036854775808

Implementation

int get negativeInfinity => (-1 << 63);