copyWith method
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);
}