getLastSyncResult method

Future<DatumSyncResult<T>?> getLastSyncResult(
  1. String userId
)

Retrieves the result of the last synchronization for a user from local storage.

Implementation

Future<DatumSyncResult<T>?> getLastSyncResult(String userId) async {
  _ensureInitialized();
  return localAdapter.getLastSyncResult(userId);
}