abbreviation property

String abbreviation

The abbreviation of the unit.

The abbreviation for a specific unit.

Implementation

String get abbreviation {
  final stringHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_Unit_getAbbreviation(_handle, errorHandler);
  });
  return stringHandle.toDartString();
}