textColor method

NikuOutlineButton textColor(
  1. Color color
)

Set text color of button, won't override existing color

Equivalent to

OutlineButton(
  splashColor: input
)

Implementation

NikuOutlineButton textColor(Color color) {
  this._textColor = color;

  return this;
}