Adds other catching overflow.
other
U32 addChecked(U32 other) { var result = value + other.value; if (result > 4294967295) { throw StateError('U32 addition overflow'); } return U32(result); }