M3ESelectionScope constructor

const M3ESelectionScope({
  1. required M3ESelectionController controller,
  2. required int itemCount,
  3. required Widget child,
  4. Key? key,
})

Creates a selection scope.

Implementation

const M3ESelectionScope({
  required this.controller,
  required this.itemCount,
  required super.child,
  super.key,
});