isStrikethrough property

bool get isStrikethrough

Gets or sets whether or not the text has a strikethrough line (line-through). The default is false.

Implementation

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

Implementation

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