TCacheImage constructor

TCacheImage({
  1. Key? key,
  2. required String url,
  3. String? cachePath,
  4. double? width,
  5. double? height,
  6. double? size,
  7. BoxFit fit = BoxFit.cover,
  8. double borderRadius = 5,
  9. Widget? loadingProgressWidget,
})

Implementation

TCacheImage({
  super.key,
  required this.url,
  this.cachePath,
  this.width,
  this.height,
  this.size,
  this.fit = BoxFit.cover,
  this.borderRadius = 5,
  this.loadingProgressWidget,
});