operator - method

Rx<int?>? operator -(
  1. int other
)

Subtraction operator.

Implementation

Rx<int?>? operator -(int other) {
  if (value != null) {
    value = value! - other;
    return this;
  }
  return null;
}