suffixBg method

NikuTextField suffixBg(
  1. Color backgroundColor
)

Set background color of text

Equivalent to

TextStyle(backgroundColor: input)

Implementation

NikuTextField suffixBg(Color backgroundColor) {
  this._suffix_backgroundColor = backgroundColor;

  return this;
}