textColor method

NikuRaisedButton textColor(
  1. Color color
)

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

Equivalent to

RaisedButton(
  splashColor: input
)

Implementation

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

  return this;
}