isUnderline property

bool get isUnderline

Gets or sets whether or not the text is underlined. The default is false.

Implementation

_i2.bool get isUnderline => _i4.getProperty(
      this,
      'isUnderline',
    );
set isUnderline (bool value)

Implementation

set isUnderline(_i2.bool value) {
  _i4.setProperty(
    this,
    'isUnderline',
    value,
  );
}