hasExactValue method

PropertyValidator<T, TProperty> hasExactValue(
  1. num exactValue
)

Implementation

PropertyValidator<T, TProperty> hasExactValue(num exactValue) {
  return this
      .useValidationRule(new _NumberHasExactValue<TProperty>(exactValue));
}