maxIntValue top-level constant

int const maxIntValue

Maximum value for a 64-bit int. Note that JavaScript can only represent up to 2^53 as the max integer value. Therefore, this constant represents the maximum value a 64-bit integer can hold in Dart.

Implementation

const int maxIntValue = 9223372036854775807;