addChecked method

U8 addChecked(
  1. U8 other
)

Adds other catching overflow.

Implementation

U8 addChecked(U8 other) {
  var result = value + other.value;
  if (result > 255) {
    throw StateError('U8 addition overflow');
  }
  return U8(result);
}