SelectValuePage constructor

SelectValuePage({
  1. required String selectValueHeaderText,
  2. required String selectValueButtonText,
  3. required String subtitleText,
  4. required String transactionTitle,
  5. required String transactionButtonLabel,
  6. required String feedbackText,
  7. required String cancelButtonLabel,
  8. required String successMessage,
  9. required String returnButtonLabel,
  10. Key? key,
})

Implementation

SelectValuePage({
  required this.selectValueHeaderText,
  required this.selectValueButtonText,
  required this.subtitleText,
  required this.transactionTitle,
  required this.transactionButtonLabel,
  required this.feedbackText,
  required this.cancelButtonLabel,
  required this.successMessage,
  required this.returnButtonLabel,
  Key? key,
}) : super(key: key);