height method

NikuTextField height(
  1. double height
)

Fixed height for text

Equivalent to

TextStyle(height: input)

Implementation

NikuTextField height(double height) {
  this._base_height = height;

  return this;
}