isCollapsed method
Whether the decoration is the same size as the input field
Equivalent to
TextFormField(
decoration: InputDecoration(
isCollapsed: input
)
)
Implementation
NikuTextField isCollapsed([bool isCollapsed = true]) {
_input_isCollapsed = isCollapsed;
return this;
}