safeBits property

int safeBits

Returns the safe bits of an integer value. In the Dart VM integer are represented using 63 bits and a sign, in JavaScript we only have 53.

Implementation

int get safeBits => bits;