filled method

NikuTextField filled(
  1. bool filled
)

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;
}