operator - method

Number operator -(
  1. dynamic other
)

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);
}