SingleSelectDialog constructor
const
SingleSelectDialog({
- Key? key,
- bool isClose = true,
- String title = "",
- String? messageText,
- Widget? messageWidget,
- required List<
String> conditions, - String? submitText,
- Color? submitBgColor,
- SingleSelectOnSubmitCallback? onSubmitClick,
- SingleSelectOnItemClickCallback? onItemClick,
- String? checkedItem,
- Widget? customWidget,
- VoidCallback? onCloseClick,
- bool canDismissOnConfirmClick = true,
- bool isCustomFollowScroll = true,
Implementation
const SingleSelectDialog(
{super.key,
this.isClose = true,
this.title = "",
this.messageText,
this.messageWidget,
required this.conditions,
this.submitText,
this.submitBgColor,
this.onSubmitClick,
this.onItemClick,
this.checkedItem,
this.customWidget,
this.onCloseClick,
this.canDismissOnConfirmClick = true,
this.isCustomFollowScroll = true});