readSince abstract method

Future<List<T>> readSince(
  1. DateTime since, {
  2. String? userId,
  3. DatumSyncScope? scope,
})

Returns entities modified at or after since, honoring userId and scope the same way readAll does.

Implementation

Future<List<T>> readSince(DateTime since, {String? userId, DatumSyncScope? scope});