hintColor method

NikuTextField hintColor(
  1. Color color
)

Set color of text

Equivalent to

TextStyle(color: input)

Implementation

NikuTextField hintColor(Color color) {
  this._hint_color = color;

  return this;
}