Mfa constructor

Mfa({
  1. required String type,
  2. required double questionRounds,
  3. required double questionsPerRound,
  4. required double selectionRounds,
  5. required double selectionsPerQuestion,
})

Implementation

Mfa({
  required this.type,
  required this.questionRounds,
  required this.questionsPerRound,
  required this.selectionRounds,
  required this.selectionsPerQuestion,
});