angularUnitId property

AngularUnitId angularUnitId

The AngularUnitId of the given angular unit.

If an error occurs then AngularUnitId.other is returned.

Implementation

AngularUnitId get angularUnitId {
  final coreValue = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_AngularUnit_getAngularUnitId(
      _handle,
      errorHandler,
    );
  });
  return AngularUnitId._fromCoreValue(
    coreValue,
  );
}