hover method

NikuOutlineButton hover(
  1. Color color
)

Background color of button when hovered

Equivalent to

OutlineButton(
  hoverColor: input
)

Implementation

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

  return this;
}