prefixColor method

NikuTextField prefixColor(
  1. Color color
)

Set color of text

Equivalent to

TextStyle(color: input)

Implementation

NikuTextField prefixColor(Color color) {
  this._prefix_color = color;

  return this;
}