backgroundColor method

NikuSelectableText backgroundColor(
  1. Color backgroundColor
)

Set background color of text

Equivalent to

TextStyle(backgroundColor: input)

Implementation

NikuSelectableText backgroundColor(Color backgroundColor) {
  _backgroundColor = backgroundColor;

  return this;
}