EmailValidator.withMessage constructor

const EmailValidator.withMessage(
  1. String message, {
  2. bool allowTopLevelDomains = false,
  3. bool allowInternational = true,
})

Implementation

const EmailValidator.withMessage(
  String message, {
  this.allowTopLevelDomains = false,
  this.allowInternational = true,
}) : super.withMessage(
        message: message,
      );