text property

String get text

Gets or sets a text string that is associated with this part.

The initial value is an empty string. This value is often used for sorting.

Implementation

_i2.String get text => _i4.getProperty(
      this,
      'text',
    );
set text (String value)

Implementation

set text(_i2.String value) {
  _i4.setProperty(
    this,
    'text',
    value,
  );
}