labelFontWeight method

NikuTextField labelFontWeight(
  1. FontWeight fontWeight
)

The thickness of the glyphs used to draw the text

Equivalent to

TextStyle(fontSize: input)

Implementation

NikuTextField labelFontWeight(FontWeight fontWeight) {
  this._label_fontWeight = fontWeight;

  return this;
}