operator + method

LogicValue operator +(
  1. dynamic other
)

Addition operation.

Implementation

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