utils update
This commit is contained in:
parent
8095795221
commit
108bddd6d0
|
|
@ -6,7 +6,8 @@ class ActionSheetData {
|
|||
final String? dismissTitle;
|
||||
final VoidCallback? onConfirmed;
|
||||
final VoidCallback? onDismissed;
|
||||
final String title;
|
||||
final String? title;
|
||||
final bool hasPadding;
|
||||
final IconData? titleIcon;
|
||||
final Color? titleColor;
|
||||
final bool hasDismissButton;
|
||||
|
|
@ -16,10 +17,11 @@ class ActionSheetData {
|
|||
|
||||
const ActionSheetData({
|
||||
required this.content,
|
||||
required this.title,
|
||||
this.title,
|
||||
this.confrimTitle,
|
||||
this.onConfirmed,
|
||||
this.titleColor,
|
||||
this.hasPadding = true,
|
||||
this.hasDismissButton = true,
|
||||
this.hasConfirmButton = true,
|
||||
this.titleIcon,
|
||||
|
|
|
|||
Loading…
Reference in New Issue