suffixIcon method

NikuTextField suffixIcon(
  1. Widget widget
)

An icon that appears before the suffix or suffixText and before the editable part of the text field, within the decoration's container

Equivalent to

TextFormField(
  decoration: InputDecoration(
    suffixIcon: input
  )
)

Implementation

NikuTextField suffixIcon(Widget widget) {
  this._input_suffixIcon = widget;

  return this;
}