addChecked method

Uint256 addChecked(
  1. Uint256 other
)

Implementation

Uint256 addChecked(Uint256 other) {
  final r = this + other;
  if (r < this) throw IntegerError.overflow;
  return r;
}