ActionSheet constructor
const
ActionSheet({
- Key? key,
- List<
ActionSheetItem> ? actions, - String? title,
- String? cancelText,
- String? description,
- bool round = true,
- IconData? closeIcon,
- bool closeOnClickOverlay = true,
- dynamic onSelect(
- ActionSheetItem actionSheetItem,
- int index,
- BuildContext context
- dynamic onCancel()?,
- dynamic onClose()?,
- Widget? child,
Implementation
const ActionSheet(
{Key? key,
this.actions,
this.title,
this.cancelText,
this.description,
this.round: true,
this.closeIcon,
this.closeOnClickOverlay: true,
this.onSelect,
this.onCancel,
this.onClose,
this.child});