operator * method

LogicValue operator *(
  1. dynamic other
)

Multiplication operation.

Implementation

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