M3ESelection constructor

const M3ESelection({
  1. required M3ESelectionAppBar appBar,
  2. required Widget body,
  3. required int itemCount,
  4. M3ESelectionController? controller,
  5. bool scaffold = true,
  6. Color? backgroundColor,
  7. Color? selectedColor,
  8. bool? resizeToAvoidBottomInset,
  9. Key? key,
})

Creates a selection host.

Implementation

const M3ESelection({
  required this.appBar,
  required this.body,
  required this.itemCount,
  this.controller,
  this.scaffold = true,
  this.backgroundColor,
  this.selectedColor,
  this.resizeToAvoidBottomInset,
  super.key,
});