CustomImage constructor

const CustomImage({
  1. Key? key,
  2. required String? imageUrl,
  3. required String pictureNotFoundUrl,
  4. String? blurHash,
  5. BoxFit? fit,
  6. double? width,
  7. double? height,
  8. Alignment? alignment,
  9. bool fake = false,
  10. bool disableAdaptiveImage = false,
})

Implementation

const CustomImage({
  super.key,
  required this.imageUrl,
  required this.pictureNotFoundUrl,
  this.blurHash,
  this.fit,
  this.width,
  this.height,
  this.alignment,
  this.fake = false,
  this.disableAdaptiveImage = false,
});