ripple method

void ripple(
  1. bool enable, {
  2. Color? splashColor,
  3. Color? highlightColor,
})

Implementation

void ripple(bool enable, {Color? splashColor, Color? highlightColor}) {
  _ripple = RippleModel(
    enable: enable,
    splashColor: splashColor,
    highlightColor: highlightColor,
  );
}