hintFontStyle method

NikuTextField hintFontStyle(
  1. FontStyle fontStyle
)

Whether to slant the glyphs in the font

Equivalent to

TextStyle(fontStyle: input)

Implementation

NikuTextField hintFontStyle(FontStyle fontStyle) {
  this._hint_fontStyle = fontStyle;

  return this;
}