labelBackgroundColor method

NikuTextField labelBackgroundColor(
  1. Color backgroundColor
)

Set background color of text

Equivalent to

TextStyle(backgroundColor: input)

Implementation

NikuTextField labelBackgroundColor(Color backgroundColor) {
  this._label_backgroundColor = backgroundColor;

  return this;
}