pullChangesToLocal method
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,
);