checkPageTitle property
getter/setter pairoverride
checkPageTitle is a function where you can transform the value from the input into something representable. This value will be given when defining the check page widgets. If this function is not set, the value will be used as is. Example:
checkPageTitle: (dynamic amount) {
return "$amount persons";
},
Implementation
@override
String Function(bool? value)? checkPageTitle;