operator - method

Money operator -(
  1. Money other
)

Money - Money

Implementation

Money operator -(Money other) {
  final diffCents = _cents - other._cents;
  _checkOverflow(diffCents);
  return Money._cached(diffCents, precisionMode);
}