BooleanAnswerFormat constructor
const
BooleanAnswerFormat({
- required String positiveAnswer,
- required String negativeAnswer,
- BooleanResult result = BooleanResult.none,
- String? question,
- String? answerType = type,
Implementation
const BooleanAnswerFormat({
required this.positiveAnswer,
required this.negativeAnswer,
this.result = BooleanResult.none,
super.question,
super.answerType = type,
}) : super();