setDefaultQuery method
to update defaultQuery
property
Implementation
void setDefaultQuery(
Map<dynamic, dynamic> Function(SearchWidget) defaultQuery,
{Options options}) {
final prev = this.defaultQuery;
this.defaultQuery = defaultQuery;
this._applyOptions(options, 'defaultQuery', prev, defaultQuery);
}