FittorBlurAsh constructor

const FittorBlurAsh({
  1. Key? key,
  2. required String hash,
  3. double? width,
  4. double? height,
  5. BoxFit fit = BoxFit.cover,
  6. Color? color,
  7. Widget? child,
  8. Widget? loadingWidget,
  9. Widget? errorWidget,
  10. int resolution = 32,
})

Implementation

const FittorBlurAsh({
  super.key,
  required this.hash,
  this.width,
  this.height,
  this.fit = BoxFit.cover,
  this.color,
  this.child,
  this.loadingWidget,
  this.errorWidget,
  this.resolution = 32,
});