SeedData constructor

SeedData(
  1. {String? member,
  2. String? host,
  3. EventType? eventType,
  4. List<Participant>? participants,
  5. List<Message>? messages,
  6. List<Poll>? polls,
  7. List<List<BreakoutParticipant>>? breakoutRooms,
  8. List<Request>? requests,
  9. List<WaitingRoomParticipant>? waitingList,
  10. List<WhiteboardUser>? whiteboardUsers}
)

Implementation

SeedData({
  this.member,
  this.host,
  this.eventType,
  this.participants,
  this.messages,
  this.polls,
  this.breakoutRooms,
  this.requests,
  this.waitingList,
  this.whiteboardUsers,
});