backgroundColor method

NikuTextField backgroundColor(
  1. Color backgroundColor
)

Set background color of text

Equivalent to

TextStyle(backgroundColor: input)

Implementation

NikuTextField backgroundColor(Color backgroundColor) {
  this._base_backgroundColor = backgroundColor;

  return this;
}