max method

RuleBuilder max(
  1. num value
)

Implementation

RuleBuilder max(num value) {
  _rules.add(MaxRule(value));
  return this;
}