operator % method

Expr operator %(
  1. Object other
)

Arithmetic modulo operator. This is not an euclidean modulo, it is equivalent to the % operator in Dart.

Implementation

Expr operator %(Object other) => mod(this, $(other));