Subtracts other catching underflow.
other
U16 subChecked(U16 other) { var result = value - other.value; if (result < 0) { throw StateError('U16 subtraction underflow'); } return U16(result); }