CachedNetworkImage constructor

const CachedNetworkImage({
  1. required String imageUrl,
  2. Key? key,
  3. Widget? placeholder,
  4. Widget? errorWidget,
  5. double? width,
  6. double? height,
  7. BoxFit? fit,
})

Implementation

const CachedNetworkImage({
  required this.imageUrl,
  super.key,
  this.placeholder,
  this.errorWidget,
  this.width,
  this.height,
  this.fit,
});