CascadeContextMenu constructor
CascadeContextMenu({
- required WidgetListBuilder actions,
- Color? backgroundColor,
- double? elevation,
- Clip? clipBehavior,
- ShapeBorder? shape,
- ThemeData? theme,
- double width = _kToolbarDefaultWidth,
Implementation
CascadeContextMenu({
required this.actions,
this.backgroundColor,
this.elevation,
this.clipBehavior,
this.shape,
this.theme,
this.width = _kToolbarDefaultWidth,
}) : assert(actions != null),
super(actions: actions);