getLastSyncResult method
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);
}