DoubleValidator function

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

Implementation

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