min<T> static method
Creates a validator that requires the control's value to be greater than
or equal to min value.
The argument min must not be null.
Implementation
static Validator<dynamic> min<T>(T min) => MinValidator<T>(min);