SearchState<T> constructor

SearchState<T>({
  1. required AsyncSnapshot<List<T>> snapshot,
  2. AsyncSnapshot<List<T>>? previousSnapshot,
  3. Object? activeCallbackIdentity,
  4. String lastInput = '',
})

Implementation

SearchState({
  required this.snapshot,
  this.previousSnapshot,
  this.activeCallbackIdentity,
  this.lastInput = '',
});