addChecked method
Implementation
Int64 addChecked(Int64 other) {
final overflow =
isNegative == other.isNegative &&
(this + other).isNegative != isNegative;
final r = this + other;
if (overflow) throw IntegerError.overflow;
return r;
}