checkPageTitle property
getter/setter pair
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
String Function(T? value)? checkPageTitle;