splash method

NikuRaisedButton splash(
  1. Color color
)

Splash/Ripple color of button

Equivalent to

RaisedButton(
  splashColor: input
)

Implementation

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

  return this;
}