boldStyle property

SmartTextStyle get boldStyle

The style applied to bold text (text wrapped with bold symbol).

Setting this property triggers a layout recalculation.

Implementation

SmartTextStyle get boldStyle => _boldStyle;
set boldStyle (SmartTextStyle value)

Implementation

set boldStyle(SmartTextStyle value) {
  if (_boldStyle == value) return;
  _boldStyle = value;
  markNeedsLayout();
}