textHeight method

NikuButton textHeight(
  1. double height
)

Fixed height for text

Equivalent to

TextStyle(height: input)

Implementation

NikuButton textHeight(double height) {
  _text_height = height;

  return this;
}