EmailAddress constructor

EmailAddress({
  1. String? name,
  2. String? smtpAddress,
  3. String? routingType,
  4. MailboxType? mailboxType,
  5. ItemId? itemId,
})
Initializes a new instance of the The name used to initialize the EmailAddress. The address used to initialize the EmailAddress. The routing type used to initialize the EmailAddress. Mailbox type of the participant.

Implementation

EmailAddress(
    {String? name,
    String? smtpAddress,
    String? routingType,
    enumerations.MailboxType? mailboxType,
    ItemId? itemId})
    : super() {
  this.name = name;
  this.address = smtpAddress;
  this.routingType = routingType;
  this.mailboxType = mailboxType;
  this.id = itemId;
}