DecodedNumeric constructor
Implementation
DecodedNumeric(super.newPosition, this._firstDigit, this._secondDigit) {
if (_firstDigit < 0 ||
_firstDigit > 10 ||
_secondDigit < 0 ||
_secondDigit > 10) {
throw FormatsException.instance;
}
}