AIBackdropGradient constructor

const AIBackdropGradient({
  1. Key? key,
  2. Widget? child,
  3. double? height,
  4. double? width,
  5. EdgeInsets? padding,
  6. BorderRadius? borderRadius,
  7. double blurSigma = 80.0,
  8. Duration duration = const Duration(seconds: 12),
})

Implementation

const AIBackdropGradient({
  Key? key,
  this.child,
  this.height,
  this.width,
  this.padding,
  this.borderRadius,
  this.blurSigma = 80.0,
  this.duration = const Duration(seconds: 12),
}) : super(key: key);