CloudSyncService constructor

CloudSyncService({
  1. required CloudSyncConfig config,
  2. Client? client,
})

Implementation

CloudSyncService({
  required CloudSyncConfig config,
  super.client,
})  : _loggingConfig = config,
      super(
        config: _toBaseSyncConfig(config),
        serviceName: 'CloudSyncService',
      );