AppCachedNetworkImage constructor

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

Implementation

const AppCachedNetworkImage({
  super.key,
  required this.imageUrl,
  required this.radius,
  this.loadingWidget,
  this.errorWidget,
  this.fit,
  this.height,
  this.width,
});