Quest(- {required String id,
- required String name,
- required bool enabled,
- required String enabledDate,
- required dynamic parentQuest,
- required int progressTotal,
- required dynamic tandemCharacter,
- required List tags,
- required dynamic reward,
- 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,
});