hintBg method

NikuTextField hintBg(
  1. Color backgroundColor
)

Set background color of text

Equivalent to

TextStyle(backgroundColor: input)

Implementation

NikuTextField hintBg(Color backgroundColor) {
  this._hint_backgroundColor = backgroundColor;

  return this;
}