highlight method

NikuOutlineButton highlight(
  1. Color color
)

Background color of button when highlighted

Equivalent to

OutlineButton(
  highlightColor: input
)

Implementation

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

  return this;
}