getSearchWidget method

SearchController? getSearchWidget(
  1. String widgetId
)

This method can be used to retrieve the instance of the SearchController class for a particular widget by id.

Implementation

SearchController? getSearchWidget(String widgetId) {
  return this._searchWidgets[widgetId];
}