CarpenterSelectionController<T> constructor

CarpenterSelectionController<T>({
  1. required Object identity(
    1. T item
    ),
  2. CarpenterSelectionMode mode = CarpenterSelectionMode.multiple,
})

Implementation

CarpenterSelectionController({
  required this.identity,
  this.mode = CarpenterSelectionMode.multiple,
});