ManagedList<T extends Identifiable> constructor

ManagedList<T extends Identifiable>(
  1. List<T> list, {
  2. required T identifiable,
  3. required ManageOperation operation,
})

Implementation

ManagedList(
  this.list, {
  required this.identifiable,
  required this.operation,
});