BlurBackground constructor

const BlurBackground({
  1. Key? key,
  2. required Color? backgroundColor,
  3. double? blurSigma,
})

Implementation

const BlurBackground({
  super.key,
  required this.backgroundColor,
  this.blurSigma,
});