counterBg method

NikuTextField counterBg(
  1. Color backgroundColor
)

Set background color of text

Equivalent to

TextStyle(backgroundColor: input)

Implementation

NikuTextField counterBg(Color backgroundColor) {
  this._counter_backgroundColor = backgroundColor;

  return this;
}