color method

NikuOutlineButton color(
  1. Color color
)

Apply color to button background

Equivalent to

OutlineButton(
  color: input
)

Implementation

NikuOutlineButton color(Color color) {
  this._color = color;

  return this;
}