supportsAttributeRules property
True if the service supports creating a replica with attribute rule data, false otherwise
Feature layers and tables are always included in the generation and synchronization of the geodatabase. If the value is true, you can generate an offline geodatabase and synchronize it using the service's attribute rule data.
Implementation
bool get supportsAttributeRules {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_SyncCapabilities_getSupportsAttributeRules(
_handle,
errorHandler,
);
});
}