BaseWebImage constructor
      const
      BaseWebImage(
    
    
- String? imageUrl, {
- Key? key,
- String? cacheKey,
- String? cacheTag,
- Widget? placeholder,
- Widget? errorWidget,
- double? width,
- double? height,
- BoxFit? fit,
- ValueChanged<ImageInfo?> ? imageCompletionHandler,
- int retries = 3,
- Duration? timeLimit,
- Map<String, String> ? headers,
- int? cacheWidth,
- int? cacheHeight,
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,
    this.cacheWidth,
    this.cacheHeight});