Quest constructor Null safety

Quest(
  1. {required String id,
  2. required String name,
  3. required bool enabled,
  4. required String enabledDate,
  5. required dynamic parentQuest,
  6. required int progressTotal,
  7. required dynamic tandemCharacter,
  8. required List tags,
  9. required dynamic reward,
  10. required List locations}
)

Implementation

Quest({
  required this.id,
  required this.name,
  required this.enabled,
  required this.enabledDate,
  required this.parentQuest,
  required this.progressTotal,
  required this.tandemCharacter,
  required this.tags,
  required this.reward,
  required this.locations,
});