ReadyNetworkImage constructor

const ReadyNetworkImage({
  1. Key? key,
  2. required String imageUrl,
  3. double? height,
  4. double? width,
  5. BoxFit? fit,
  6. BorderRadius? borderRadius,
  7. Color? borderColor,
  8. double? borderWidth,
  9. Color? backgroundColor,
  10. bool isRounded = false,
  11. bool isDark = false,
  12. Clip clipBehavior = Clip.antiAlias,
  13. Widget? placeholder,
  14. Widget? errorWidget,
})

Implementation

const ReadyNetworkImage({
  super.key,
  required this.imageUrl,
  this.height,
  this.width,
  this.fit,
  this.borderRadius,
  this.borderColor,
  this.borderWidth,
  this.backgroundColor,
  this.isRounded = false,
  this.isDark = false,
  this.clipBehavior = Clip.antiAlias,
  this.placeholder,
  this.errorWidget,
});