ListState constructor

ListState({
  1. required bool selectionIsActive,
  2. List<DocumentReference<Object?>> selectedRefs = const [],
  3. bool multiSelect = true,
  4. bool clearSearchControllerOnChange = true,
})

Implementation

ListState({
  required bool selectionIsActive,
  this.selectedRefs = const [],
  this.multiSelect = true,
  this.clearSearchControllerOnChange = true,
}) : this._selectionIsActive = selectionIsActive;