EmailAddress constructor
      
      EmailAddress({ 
    
- String? name,
- String? smtpAddress,
- String? routingType,
- MailboxType? mailboxType,
- ItemId? itemId,
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;
}