operator - method
Resta dos números manteniendo la precisión
Implementation
Number operator -(dynamic other) {
final otherNum = _toNumber(other);
return Number(value: _value - otherNum._value, decimals: _decimals);
}
Resta dos números manteniendo la precisión
Number operator -(dynamic other) {
final otherNum = _toNumber(other);
return Number(value: _value - otherNum._value, decimals: _decimals);
}