helperBackgroundColor method

NikuTextField helperBackgroundColor(
  1. Color backgroundColor
)

Set background color of text

Equivalent to

TextStyle(backgroundColor: input)

Implementation

NikuTextField helperBackgroundColor(Color backgroundColor) {
  this._helper_backgroundColor = backgroundColor;

  return this;
}