fillColor method
The base fill color of the decoration's container color
Equivalent to
TextFormField(
decoration: InputDecoration(
fillColor: input
)
)
Implementation
NikuTextField fillColor(Color color) {
this._input_fillColor = color;
return this;
}