syncEnabled property

bool syncEnabled

True if the service has sync enabled, false otherwise.

Implementation

bool get syncEnabled {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_ArcGISFeatureServiceInfo_getSyncEnabled(
      _handle,
      errorHandler,
    );
  });
}