errorHeight method

NikuTextField errorHeight(
  1. double height
)

Fixed height for text

Equivalent to

TextStyle(height: input)

Implementation

NikuTextField errorHeight(double height) {
  this._error_height = height;

  return this;
}