PollMultipleChoice constructor

PollMultipleChoice({
  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

PollMultipleChoice({
  int? id,
  String? name,
  String? description,
  String? location,
  DateTime? startDate,
  DateTime? endDate,
  DateTime? createdAt,
  LiveSessionType? liveSessionType,
  PigeonholeLinks? pigeonholeLinks,
  int? parentSessionId,
}) : super(
        id: id,
        name: name,
        description: description,
        startDate: startDate,
        endDate: endDate,
        createdAt: createdAt,
        liveSessionType: liveSessionType,
        pigeonholeLinks: pigeonholeLinks,
        parentSessionId: parentSessionId,
      );