number static method
Implementation
static TextValidator number(num minValue, num maxValue, {bool allowEmpty = false, String? message}) {
return NumValidator(minValue: minValue, maxValue: maxValue, allowEmpty: allowEmpty, message: message).call;
}
static TextValidator number(num minValue, num maxValue, {bool allowEmpty = false, String? message}) {
return NumValidator(minValue: minValue, maxValue: maxValue, allowEmpty: allowEmpty, message: message).call;
}