setCustomQuery method Null safety
sets the customQuery
property
Implementation
void setCustomQuery(
Map<dynamic, dynamic> Function(SearchController) customQuery,
{Options? options}) {
final prev = this.customQuery;
this.customQuery = customQuery;
this._applyOptions(options, 'customQuery', prev, customQuery);
}