EndScreen constructor

const EndScreen({
  1. Key? key,
  2. required int answeredQuestion,
  3. required int totalQuestion,
  4. required bool isSubmitted,
  5. required bool isDeclared,
  6. ResponseReward? reward,
  7. bool? verdict,
  8. required String bgUrl,
  9. required String assetUrl,
})

Implementation

const EndScreen({
  super.key,
  required this.answeredQuestion,
  required this.totalQuestion,
  required this.isSubmitted,
  required this.isDeclared,
  this.reward,
  this.verdict,
  required this.bgUrl,
  required this.assetUrl,
});