semanticCounterText method

NikuTextField semanticCounterText(
  1. String semantic
)

A semantic label for the counterText

Equivalent to

TextFormField(
  decoration: InputDecoration(
    semanticCounterText: input
  )
)

Implementation

NikuTextField semanticCounterText(String semantic) {
  this._input_semanticCounterText = semantic;

  return this;
}