textBackgroundColor method

NikuButton textBackgroundColor(
  1. Color backgroundColor
)

Set background color of text

Equivalent to

TextStyle(backgroundColor: input)

Implementation

NikuButton textBackgroundColor(Color backgroundColor) {
  _text_backgroundColor = backgroundColor;

  return this;
}