hover method

NikuRaisedButton hover(
  1. Color color
)

Background color of button when hovered

Equivalent to

RaisedButton(
  hoverColor: input
)

Implementation

NikuRaisedButton hover(Color color) {
  this._hoverColor = color;

  return this;
}