AppMultipleItemsHandler<T> constructor

const AppMultipleItemsHandler<T>(
  1. FutureOr<void> onChanged(
    1. List<T>
    ), {
  2. List<T> initialValue = const [],
  3. bool compareItems(
    1. T,
    2. T
    )?,
  4. String itemAsString(
    1. T
    )?,
})

Implementation

const AppMultipleItemsHandler(
  this.onChanged, {
  this.initialValue = const [],
  super.compareItems,
  super.itemAsString,
});