syncModel property

SyncModel syncModel

The synchronization model that will be used generate a geodatabase.

The default is sync model is Layer. Check the services supports the required sync model, see ArcGISFeatureServiceInfo.syncCapabilities.

Implementation

SyncModel get syncModel {
  final coreValue = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_GenerateGeodatabaseParameters_getSyncModel(
      _handle,
      errorHandler,
    );
  });
  return SyncModel._fromCoreValue(
    coreValue,
  );
}
void syncModel=(SyncModel value)

Implementation

set syncModel(SyncModel value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_GenerateGeodatabaseParameters_setSyncModel(
      _handle,
      value.coreValue,
      errorHandler,
    );
  });
}