MIN_INT_VALUE top-level constant

int const MIN_INT_VALUE

Minimum value that an 64bit int can store. This is different from when dart is compiled to JS because JS can only represent -2^53 as min int value.

Implementation

// ignore: constant_identifier_names
const int MIN_INT_VALUE = -9223372036854775808;