kMaxJsInt top-level constant

int const kMaxJsInt

2^53 - 1, the maximum safe integer value for dart code that might be compiled to javascript (i.e. used in a web app).

Implementation

const kMaxJsInt = 0x1FFFFFFFFFFFFF;