description property

String description

A description of the class break. "Cities with a population under 100,000", for example.

Implementation

String get description {
  final stringHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_ClassBreak_getDescription(_handle, errorHandler);
  });
  return stringHandle.toDartString();
}
void description=(String value)

Implementation

set description(String value) {
  final coreValue = _CString(value);
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_ClassBreak_setDescription(
        _handle, coreValue.bytes, errorHandler);
  });
}