Attendee constructor

Attendee({
  1. String? type,
  2. Status? status,
  3. 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});