syncDirection property
The sync direction for the specified layer Id.
Implementation
SyncDirection get syncDirection {
final coreValue = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_SyncLayerOption_getSyncDirection(
_handle, errorHandler);
});
return SyncDirection._fromCoreValue(coreValue);
}
Implementation
set syncDirection(SyncDirection value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_SyncLayerOption_setSyncDirection(
_handle, value.coreValue, errorHandler);
});
}