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