isCollapsed method

NikuTextField isCollapsed(
  1. bool isCollapsed
)

Whether the decoration is the same size as the input field

Equivalent to

TextFormField(
  decoration: InputDecoration(
    isCollapsed: bool
  )
)

Implementation

NikuTextField isCollapsed(bool isCollapsed) {
  this._input_isCollapsed = isCollapsed;

  return this;
}