operator - method

LogicValue operator -(
  1. dynamic other
)

Subtraction operation.

Implementation

LogicValue operator -(dynamic other) =>
    // ignore: avoid_dynamic_calls
    _doMath(other, (a, b) => a - b);