SyncGeodatabaseParameters constructor

SyncGeodatabaseParameters()

Create a parameters object for use with the sync method on the geodatabase sync task.

Implementation

factory SyncGeodatabaseParameters() {
  _initializeArcGISEnvironmentIfNeeded();
  final handle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_SyncGeodatabaseParameters_create(errorHandler);
  });
  return SyncGeodatabaseParameters._withHandle(handle);
}