LiveSession constructor

LiveSession({
  1. int? id,
  2. String? name,
  3. String? description,
  4. String? location,
  5. DateTime? startDate,
  6. DateTime? endDate,
  7. DateTime? createdAt,
  8. LiveSessionType? liveSessionType,
  9. PigeonholeLinks? pigeonholeLinks,
  10. int? parentSessionId,
})

Implementation

LiveSession({
  this.id,
  this.name,
  this.description,
  this.location,
  this.startDate,
  this.endDate,
  this.createdAt,
  this.liveSessionType,
  this.pigeonholeLinks,
  this.parentSessionId,
});