Email constructor

const Email({
  1. Name? name = const Name(maxChar: 10, textCase: TextCase.lower),
  2. List<String> domains = emailDomains,
})

Implementation

const Email({
  this.name = const Name(maxChar: 10, textCase: TextCase.lower),
  this.domains = emailDomains,
});