syncModel property
The sync model defining how datasets within the geodatabase are synchronized with the originating ArcGIS feature service.
Sync model only applies to the geodatabase if Geodatabase.isSyncEnabled is true.
Implementation
SyncModel get syncModel {
final coreValue = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_Geodatabase_getSyncModel(_handle, errorHandler);
});
return SyncModel._fromCoreValue(coreValue);
}