searchRunner property
Optional runner to execute remoteSearch without hitting the network.
When provided, remoteSearch
will call this runner with the built plan
and expect a list of raw row maps in return. This is primarily for tests.
Implementation
final Future<List<Map<String, dynamic>>> Function(SupabaseSearchRequest plan)?
searchRunner;