SplitInt64 class
A representation of an int64, n, that is immune to precision loss when encoded in JSON.
Constructors
- SplitInt64({int? highBits, int? lowBits})
- SplitInt64.fromJson(Map _json)
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- highBits ↔ int?
-
The high order bits, including the sign: n >> 32.
getter/setter pair
- lowBits ↔ int?
-
The low order bits: n & 0xffffffff.
getter/setter pair
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → Map< String, dynamic> -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited