highlight method

NikuIconButton highlight(
  1. Color color
)

Background color of button when highlighted

Equivalent to

IconButton(
  highlightColor: input
)

Implementation

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

  return this;
}