operator / method

LogicValue operator /(
  1. dynamic other
)

Division operation.

Implementation

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