internal property Null safety
final
The calculator's internal representation of a value, as an unsigned integer of (up to) 64 bits in normal operation (128 for the double integer operations). It's a BigInt rather than an int because Javascript Is Evil (tm). That said, using BigInt does let us handle the double integer operations easily.
Implementation
final BigInt internal;