IntValidator function
Implementation
TextValidator IntValidator({int? minValue, int? maxValue, bool allowEmpty = true, String? message}) {
return NumValidator(minValue: minValue, maxValue: maxValue, allowEmpty: allowEmpty, message: message);
}
TextValidator IntValidator({int? minValue, int? maxValue, bool allowEmpty = true, String? message}) {
return NumValidator(minValue: minValue, maxValue: maxValue, allowEmpty: allowEmpty, message: message);
}