searchRunner property

Future<List<Map<String, dynamic>>> Function(List<String> queries)? searchRunner
final

Optional runner to execute remoteSearch without network. If provided, remoteSearch will call this with the built queries and expect a list of raw row maps in return. Intended for unit tests.

Implementation

final Future<List<Map<String, dynamic>>> Function(List<String> queries)?
searchRunner;