QuestionModalWidget constructor
const
QuestionModalWidget({
- Key? key,
- required String? trueButton,
- required String? falseButton,
- required String? trueImageUrl,
- required String? falseImageUrl,
- String? thirdButtonTitle,
- String? thirdButtonSubTitle,
- String? thirdButtonImageUrl,
- String? trueSubtitle,
- String? falseSubtitle,
- bool? showThirdButton,
- bool? isDeposit,
Implementation
const QuestionModalWidget({
Key? key,
required this.trueButton,
required this.falseButton,
required this.trueImageUrl,
required this.falseImageUrl,
this.thirdButtonTitle,
this.thirdButtonSubTitle,
this.thirdButtonImageUrl,
this.trueSubtitle,
this.falseSubtitle,
bool? showThirdButton,
bool? isDeposit,
}) : this.showThirdButton = showThirdButton ?? false,
this.isDeposit = isDeposit ?? false,
super(key: key);