counterText method

NikuTextField counterText(
  1. String counterText
)

Optional custom counter widget to go in the place otherwise occupied by counterText. If this property is non null, then counterText is ignored

Equivalent to

TextFormField(
  decoration: InputDecoration(
    counterText: input
  )
)

Implementation

NikuTextField counterText(String counterText) {
  this._input_counterText = counterText;

  return this;
}