MaterialSelectionToolbar constructor

MaterialSelectionToolbar({
  1. required WidgetListBuilder actions,
  2. Color? backgroundColor,
  3. double? elevation,
  4. Clip? clipBehavior,
  5. ShapeBorder? shape,
  6. ThemeData? theme,
})

Implementation

MaterialSelectionToolbar({
  required this.actions,
  this.backgroundColor,
  this.elevation,
  this.clipBehavior,
  this.shape,
  this.theme,
})  : assert(actions != null),
      super(actions: actions);