expands method

NikuTextField expands([
  1. bool expands = true
])

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

Equivalent to

TextFormField(
  expands: input
)

Implementation

NikuTextField expands([bool expands = true]) {
  _expands = expands;

  return this;
}