suffixText method

NikuTextField suffixText(
  1. String prefixText
)

Optional widget to place on the line before the input

Equivalent to

TextFormField(
  decoration: InputDecoration(
    suffixIconConstraints: input
  )
)

Implementation

NikuTextField suffixText(String prefixText) {
  this._input_suffixText = prefixText;

  return this;
}