italic method

NikuTextField italic()

Whether to slant the glyphs in the font

Equivalent to

TextStyle(fontStyle: FontStyle.italic)

Implementation

NikuTextField italic() {
  this._base_fontStyle = FontStyle.italic;

  return this;
}