italic method

NikuText italic()

Whether to slant the glyphs in the font

Equivalent to

TextStyle(fontStyle: FontStyle.italic)

Implementation

NikuText italic() {
  this._fontStyle = FontStyle.italic;

  return this;
}