EmailAddress constructor

EmailAddress({
  1. String? customType,
  2. String? emailAddress,
  3. String? emailUrl,
  4. bool? primary,
  5. String? type,
})

Implementation

EmailAddress({
  this.customType,
  this.emailAddress,
  this.emailUrl,
  this.primary,
  this.type,
});