helperBold method

NikuTextField helperBold()

Set font to bold, using FontWeight.bold

The thickness of the glyphs used to draw the text

Equivalent to

TextStyle(FontWeight: FontWeight.bold)

Implementation

NikuTextField helperBold() {
  this._helper_fontWeight = FontWeight.bold;

  return this;
}