pullChangesToLocal method

Future<void> pullChangesToLocal({
  1. required String repositoryName,
  2. required List<JsonMap> remoteChanges,
})
inherited

Applies remote changes for a repository by delegating to the client.

  • repositoryName: Target repository name.
  • remoteChanges: Raw events from the remote source.

Implementation

Future<void> pullChangesToLocal({
  required String repositoryName,
  required List<JsonMap> remoteChanges,
}) => _client.pullChanges(
  repositoryName: repositoryName,
  changes: remoteChanges,
);