errorColor method

NikuTextField errorColor(
  1. Color color
)

Set color of text

Equivalent to

TextStyle(color: input)

Implementation

NikuTextField errorColor(Color color) {
  this._error_color = color;

  return this;
}