inputDecorationEnable method

NikuTextField inputDecorationEnable(
  1. bool enabled
)

If false helperText, errorText, and counterText are not displayed, and the opacity of the remaining visual elements is reduced

Equivalent to

TextFormField(
  decoration: InputDecoration(
    enabled: input
  )
)

Implementation

NikuTextField inputDecorationEnable(bool enabled) {
  this._input_decorationEnabled = enabled;

  return this;
}