subscribeTo property

List<String>? subscribeTo
final

A list of component ids to subscribe to.

This property allows users to select the search contollerer for which they want to display the filter value. For example,

SelectedFilters(
  ...
  subscribeTo: const ['range-selector'],
  ...
)

Implementation

final List<String>? subscribeTo;