prefixBg method

NikuTextField prefixBg(
  1. Color backgroundColor
)

Set background color of text

Equivalent to

TextStyle(backgroundColor: input)

Implementation

NikuTextField prefixBg(Color backgroundColor) {
  this._prefix_backgroundColor = backgroundColor;

  return this;
}