IntValidator function

TextValidator IntValidator({
  1. int? minValue,
  2. int? maxValue,
  3. bool allowEmpty = true,
  4. String? message,
})

Implementation

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