Pigeonhole constructor

Pigeonhole({
  1. int? id,
  2. String? name,
  3. String? description,
  4. String? passcode,
  5. DateTime? startDate,
  6. DateTime? endDate,
  7. PigeonholeStatus? status,
  8. String? timezone,
  9. bool? attendeeProfiles,
  10. bool? registrants,
  11. bool? attendeeCodeRequired,
  12. PigeonholeLinks? pigeonholeLinks,
})

Implementation

Pigeonhole({
  this.id,
  this.name,
  this.description,
  this.passcode,
  this.startDate,
  this.endDate,
  this.status,
  this.timezone,
  this.attendeeProfiles,
  this.registrants,
  this.attendeeCodeRequired,
  this.pigeonholeLinks,
});