IntegerValidator constructor

const IntegerValidator({
  1. int? radix,
  2. String? errorText,
  3. bool checkNullOrEmpty = true,
})

Constructor for the integer validator.

Implementation

const IntegerValidator({
  this.radix,

  /// {@macro base_validator_error_text}
  super.errorText,

  /// {@macro base_validator_null_check}
  super.checkNullOrEmpty,
});