operator - method

  1. @override
Decimal operator -(
  1. Decimal other
)
override

Subtraction

Implementation

@override
operator -(Decimal other) {
  return this + (-other);
}