Attendee constructor

Attendee({
  1. String? name,
  2. String? smtpAddress,
  3. String? routingType,
})
Initializes a new instance of the The name used to initialize the Attendee. The SMTP address used to initialize the Attendee. The routing type used to initialize the Attendee.

Implementation

Attendee({String? name, String? smtpAddress, String? routingType})
    : super(name: name, smtpAddress: smtpAddress, routingType: routingType);