isDense method
Whether the InputDecorator.child is part of a dense form (i.e., uses less vertical space)
Equivalent to
TextFormField(
decoration: InputDecoration(
isDense: input
)
)
Implementation
NikuTextField isDense(bool isDense) {
this._input_isDense = isDense;
return this;
}