splash method

NikuOutlineButton splash(
  1. Color color
)

Splash/Ripple color of button

Equivalent to

OutlineButton(
  splashColor: input
)

Implementation

NikuOutlineButton splash(Color color) {
  this._splashColor = color;

  return this;
}