NoCacheImg constructor

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

Implementation

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