Attendee constructor
Attendee({
- String? type,
- Status? status,
- EmailAddress? emailAddress,
Creates a new instance of Attendee.
All parameters (type, status, and emailAddress) are optional and can be null.
Implementation
Attendee({this.type, this.status, this.emailAddress});