filled method
If true the decoration's container is filled with fillColor
Equivalent to
TextFormField(
decoration: InputDecoration(
filled: input
)
)
Implementation
NikuTextField filled(bool filled) {
this._input_filled = filled;
return this;
}