hover method

NikuFlatButton hover(
  1. Color color
)

Background color of button when hovered

Equivalent to

FlatButton(
  hoverColor: input
)

Implementation

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

  return this;
}