bg method

NikuText bg(
  1. Color backgroundColor
)

Set background color of text

Equivalent to

TextStyle(backgroundColor: input)

Implementation

NikuText bg(Color backgroundColor) {
  this._backgroundColor = backgroundColor;

  return this;
}