CachedImageWidget constructor

const CachedImageWidget({
  1. Key? key,
  2. required String url,
  3. double? borderRadius,
  4. Alignment alignment = Alignment.topLeft,
  5. BoxFit? fit,
  6. BoxShape? shape,
  7. double? width,
  8. double? height,
  9. Color? color,
})

Implementation

const CachedImageWidget({
  super.key,
  required this.url,
  this.borderRadius,
  this.alignment = Alignment.topLeft,
  this.fit,
  this.shape,
  this.width,
  this.height,
  this.color,
});