expands method

NikuTextField expands(
  1. bool expands
)

Whether this widget's height will be sized to fill its parent

Equivalent to

TextFormField(
  expands: input
)

Implementation

NikuTextField expands(bool expands) {
  this._expands = expands;

  return this;
}