AgCachedImage constructor

const AgCachedImage({
  1. Key? key,
  2. required String? imageUrl,
  3. double size = 80,
  4. double? height,
  5. double? width,
  6. double borderRadius = 0,
  7. BoxFit fit = BoxFit.cover,
  8. bool isCircle = true,
  9. bool isProfile = false,
  10. String? name,
})

Implementation

const AgCachedImage({
  super.key,
  required this.imageUrl,
  this.size = 80,
  this.height,
  this.width,
  this.borderRadius = 0,
  this.fit = BoxFit.cover,
  this.isCircle = true,
  this.isProfile = false,
  this.name,
});