remoteSearch abstract method

Future<List<T>> remoteSearch(
  1. SyncScope scope,
  2. QuerySpec spec
)

Search within a scope using a normalized query spec. Implementations should apply soft-delete semantics and only support operators and fields that are natively available on the backend. Unsupported operators/fields must throw ArgumentError with a clear message.

Implementation

Future<List<T>> remoteSearch(SyncScope scope, QuerySpec spec);