ProgressiveBlurWidget.custom constructor

const ProgressiveBlurWidget.custom({
  1. Key? key,
  2. required Image? blurTexture,
  3. required double sigma,
  4. required Widget child,
  5. Color tintColor = Colors.transparent,
})

Implementation

const ProgressiveBlurWidget.custom({
  super.key,
  required this.blurTexture,
  required this.sigma,
  required this.child,
  this.tintColor = Colors.transparent,
})  : linearGradientBlur = null,
      // Irrelevant in case of a custom blur texture
      blurTextureDimensions = -1;