MAX_INT_VALUE top-level constant

int const MAX_INT_VALUE

Maximum value that an 64bit int can store. This is different from when dart is compiled to JS becauseJS can only represent 2^53 as max int value.

Implementation

// ignore: constant_identifier_names
const int MAX_INT_VALUE = 9223372036854775807;