Attendee constructor

Attendee({
  1. required String name,
  2. required String email,
  3. String? role,
  4. String? partstat,
  5. bool? rsvp,
  6. String? delegate,
  7. String? cutype,
  8. int? numGuests,
  9. String? mailTo,
  10. String? directoryEntry,
})

Implementation

Attendee({
  required String name,
  required String email,
  this.role,
  this.partstat,
  this.rsvp,
  this.delegate,
  this.cutype,
  this.numGuests,
  this.mailTo,
  String? directoryEntry,
}) : super(name: name, email: email, directoryEntry: directoryEntry);