linearUnitId property
The LinearUnitId of the given Linear unit.
If an error occurs then LinearUnitId.other is returned.
Implementation
LinearUnitId get linearUnitId {
final coreValue = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_LinearUnit_getLinearUnitId(
_handle,
errorHandler,
);
});
return LinearUnitId._fromCoreValue(
coreValue,
);
}