hasMaxValue method

PropertyValidator<T, TProperty> hasMaxValue(
  1. num maxValue
)

Implementation

PropertyValidator<T, TProperty> hasMaxValue(num maxValue) {
  return this.useValidationRule(new _NumberHasMaxValue<TProperty>(maxValue));
}