operator - method

RxNum operator -(
  1. num other
)

Subtraction operator.

Implementation

RxNum operator -(num other) {
  return (value - other).rx
    ..copyInfo(this)
    ..publishRxAspects(); // in case -- operator, publish the rx aspects
}