BaseWebImage constructor

const BaseWebImage(
  1. String? imageUrl, {
  2. Key? key,
  3. String? cacheKey,
  4. String? cacheTag,
  5. Widget? placeholder,
  6. Widget? errorWidget,
  7. double? width,
  8. double? height,
  9. BoxFit? fit,
  10. ValueChanged<ImageInfo?>? imageCompletionHandler,
  11. int retries = 3,
  12. Duration? timeLimit,
  13. Map<String, String>? headers,
})

Implementation

const BaseWebImage(this.imageUrl,
    {super.key,
    this.cacheKey,
    this.cacheTag,
    this.placeholder,
    this.errorWidget,
    this.width,
    this.height,
    this.fit,
    this.imageCompletionHandler,
    this.retries = 3,
    this.timeLimit,
    this.headers});