backgroundColor method

NikuText backgroundColor(
  1. Color backgroundColor
)

Set background color of text

Equivalent to

TextStyle(backgroundColor: input)

Implementation

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

  return this;
}