copyWith method

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

Implementation

Mfa copyWith(
    {String? type,
    double? questionRounds,
    double? questionsPerRound,
    double? selectionRounds,
    double? selectionsPerQuestion}) {
  return Mfa(
      type: type ?? this.type,
      questionRounds: questionRounds ?? this.questionRounds,
      questionsPerRound: questionsPerRound ?? this.questionsPerRound,
      selectionRounds: selectionRounds ?? this.selectionRounds,
      selectionsPerQuestion:
          selectionsPerQuestion ?? this.selectionsPerQuestion);
}