QuizRF constructor

QuizRF({
  1. Quiz? quiz,
  2. Color? buttonColor,
  3. Color? indexColor,
  4. Color? optionBackgroundColor,
  5. Color? optionBorderColor,
  6. double? optionBorderRadious,
  7. double? optionBorderWidth,
  8. Color? optionTextColor,
  9. Color? questionTextColor,
  10. FontWeight? indexFontWeight,
  11. FontWeight? optionFontWeight,
  12. FontWeight? questionFontWeight,
  13. int? optionsPerRow = 1,
  14. Function? onComplete,
})

Implementation

QuizRF(
    {this.quiz,
    this.buttonColor,
    this.indexColor,
    this.optionBackgroundColor,
    this.optionBorderColor,
    this.optionBorderRadious,
    this.optionBorderWidth,
    this.optionTextColor,
    this.questionTextColor,
    this.indexFontWeight,
    this.optionFontWeight,
    this.questionFontWeight,
    this.optionsPerRow = 1,
    this.onComplete});