withBackBlurImage method

Widget withBackBlurImage({
  1. required ImageProvider<Object> imageProvider,
  2. double? sigmaX,
  3. double? sigmaY,
  4. BoxFit? imageFit = BoxFit.cover,
  5. double? imageWidth,
  6. double? imageHeight,
  7. BlendMode? imageColorBlendMode,
  8. Alignment imageAlignment = Alignment.center,
  9. Color? imageColor,
})

Implementation

Widget withBackBlurImage({
  required ImageProvider imageProvider,
  double? sigmaX,
  double? sigmaY,
  BoxFit? imageFit = BoxFit.cover,
  double? imageWidth,
  double? imageHeight,
  BlendMode? imageColorBlendMode,
  Alignment imageAlignment = Alignment.center,
  Color? imageColor,
}) {
  return BackBlurImage(
    imageProvider: imageProvider,
    sigmaY: sigmaY,
    sigmaX: sigmaX,
    child: this,
    imageFit: imageFit,
    imageWidth: imageWidth,
    imageHeight: imageHeight,
    imageAlignment: imageAlignment,
    imageColorBlendMode: imageColorBlendMode,
    imageColor: imageColor,
  );
}