errorBg method

NikuTextField errorBg(
  1. Color backgroundColor
)

Set background color of text

Equivalent to

TextStyle(backgroundColor: input)

Implementation

NikuTextField errorBg(Color backgroundColor) {
  this._error_backgroundColor = backgroundColor;

  return this;
}