Qna constructor

Qna({
  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,
  11. String? logoPosition,
  12. bool? anonymousResponses,
  13. bool? questionFiltering,
  14. bool? comments,
  15. bool? commentFiltering,
  16. bool? answers,
  17. bool? answerRatings,
  18. bool? questionsAvailableAfterEnd,
  19. bool? adminCollaboration,
  20. bool? hideOtherAttendeesQuestions,
  21. bool? questionVotes,
  22. bool? tagsRequired,
  23. String? tags,
  24. String? sessionLabel,
  25. String? buttonText,
})

Implementation

Qna({
  int? id,
  String? name,
  String? description,
  String? location,
  DateTime? startDate,
  DateTime? endDate,
  DateTime? createdAt,
  LiveSessionType? liveSessionType,
  PigeonholeLinks? pigeonholeLinks,
  int? parentSessionId,
  this.logoPosition,
  this.anonymousResponses,
  this.questionFiltering,
  this.comments,
  this.commentFiltering,
  this.answers,
  this.answerRatings,
  this.questionsAvailableAfterEnd,
  this.adminCollaboration,
  this.hideOtherAttendeesQuestions,
  this.questionVotes,
  this.tagsRequired,
  this.tags,
  this.sessionLabel,
  this.buttonText,
}) : super(
        id: id,
        name: name,
        description: description,
        startDate: startDate,
        endDate: endDate,
        createdAt: createdAt,
        liveSessionType: liveSessionType,
        pigeonholeLinks: pigeonholeLinks,
        parentSessionId: parentSessionId,
      );