contentText property

String? get contentText

Defines a text content that is shown in the attachment. Either an icon or a text can be shown, but not both.

Implementation

_i2.String? get contentText => _i5.getProperty(
      this,
      'contentText',
    );
set contentText (String? value)

Implementation

set contentText(_i2.String? value) {
  _i5.setProperty(
    this,
    'contentText',
    value ?? _i6.undefined,
  );
}