Subtraction operator.
Rx<double?>? operator -(num other) { if (value != null) { value = value! + other; return this; } return null; }