KntCachedImage constructor

const KntCachedImage({
  1. Key? key,
  2. String? url,
  3. double? width,
  4. double? height,
  5. BorderRadius? borderRadius,
  6. Border? border,
  7. List<BoxShadow>? boxShadows,
  8. EdgeInsets? padding,
  9. Widget? child,
  10. BoxFit? fit,
  11. Widget? placeholder,
  12. Widget? errorImage,
  13. Map<String, String>? httpHeaders,
})

Implementation

const KntCachedImage({
  super.key,
  this.url,
  this.width,
  this.height,
  this.borderRadius,
  this.border,
  this.boxShadows,
  this.padding,
  this.child,
  this.fit,
  this.placeholder,
  this.errorImage,
  this.httpHeaders,
});