FadeImage constructor

const FadeImage({
  1. Key? key,
  2. double? prepageImageWidth,
  3. double? prepageImageHeight,
  4. double? width,
  5. double? height,
  6. required String imageUrl,
  7. BoxFit? fit = BoxFit.cover,
  8. PlaceholderWidgetBuilder? placeholder,
  9. LoadingErrorWidgetBuilder? errorWidget,
  10. Duration? placeholderFadeInDuration,
  11. Duration? fadeOutDuration,
  12. Duration? fadeInDuration,
  13. ProgressIndicatorBuilder? progressIndicatorBuilder,
})

Implementation

const FadeImage({
  Key? key,
  this.prepageImageWidth,
  this.prepageImageHeight,
  this.width,
  this.height,
  required this.imageUrl,
  this.fit = BoxFit.cover,
  this.placeholder,
  this.errorWidget,
  this.placeholderFadeInDuration,
  this.fadeOutDuration,
  this.fadeInDuration,
  this.progressIndicatorBuilder,
}) : super(key: key);