hover method

NikuIconButton hover(
  1. Color color
)

Background color of button when hovered

Equivalent to

IconButton(
  hoverColor: input
)

Implementation

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

  return this;
}