SearchStateController constructor

SearchStateController({
  1. Map<String, List<KeysToSubscribe>>? subscribeTo,
  2. void onChange(
    1. Map<String, SearchControllerState>,
    2. Map<String, SearchControllerState>
    )?,
  3. required SearchBase searchBase,
})

Implementation

SearchStateController({
  this.subscribeTo,
  this.onChange,
  required this.searchBase,
}) {
  subscribeToProperties();
}