safeIntegerBits top-level constant
int
const safeIntegerBits
The safe bits of an int value. In the Dart VM integer are represented using 63 bits, in JavaScript we only have 53.
Implementation
const int safeIntegerBits = isJavaScript ? 53 : 63;