operator % method

LogicValue operator %(
  1. dynamic other
)

Modulo operation.

Implementation

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