moduloAssign function

Builder moduloAssign(
  1. Builder value,
  2. Builder other
)

Returns the %= operator of this and other.

this %= other

Implementation

Builder moduloAssign(
  Builder value,
  Builder other,
) {
  return Row.binary(left: value, right: other, operator: '%=');
}