fontStyle property

FontStyle fontStyle

Get fontstyle for each block based on their inline styles

Implementation

FontStyle get fontStyle => this.inlineStyles.contains("ITALIC")
    ? FontStyle.italic
    : FontStyle.normal;