customSplashFactory static method

InteractiveInkFeatureFactory customSplashFactory({
  1. double strokeWidth = 30,
  2. double blurStrength = 5,
})

Implementation

static InteractiveInkFeatureFactory customSplashFactory({
  double strokeWidth = 30,
  double blurStrength = 5,
}) {
  assert(blurStrength >= 0);
  assert(strokeWidth >= 0);
  return _WaveSplashFactory(strokeWidth, blurStrength);
}