RulesScreen constructor

const RulesScreen({
  1. Key? key,
  2. required Text_c rules,
  3. required bool submitted,
  4. required VoidCallback? onStartQuiz,
  5. required String quizStatus,
  6. ReferrerReward? rewards,
  7. required bool isOver,
  8. required String heading,
  9. String? bgUrl,
  10. String? landingUrl,
})

Implementation

const RulesScreen({
  super.key,
  required this.rules,
  required this.submitted,
  required this.onStartQuiz,
  required this.quizStatus,
  this.rewards,
  required this.isOver,
  required this.heading,
  this.bgUrl,
  this.landingUrl,
});