EmailAddress constructor

EmailAddress({
  1. String? displayName,
  2. String? formattedType,
  3. FieldMetadata? metadata,
  4. String? type,
  5. String? value,
})

Implementation

EmailAddress({
  this.displayName,
  this.formattedType,
  this.metadata,
  this.type,
  this.value,
});