operator - method

num operator -(
  1. dynamic other
)
inherited

Subtraction operator.

Implementation

num operator -(other) {
  if (other == null) {
    return raw;
  }
  if (other is T) {
    return raw - other;
  }
  return raw - other.raw;
}