CascadeContextMenu constructor

CascadeContextMenu({
  1. required WidgetListBuilder actions,
  2. Color? backgroundColor,
  3. double? elevation,
  4. Clip? clipBehavior,
  5. ShapeBorder? shape,
  6. ThemeData? theme,
  7. 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);