highlight method

NikuRaisedButton highlight(
  1. Color color
)

Background color of button when highlighted

Equivalent to

RaisedButton(
  highlightColor: input
)

Implementation

NikuRaisedButton highlight(Color color) {
  this._highlightColor = color;

  return this;
}