AgCachedImage constructor

const AgCachedImage({
  1. Key? key,
  2. required String? imageUrl,
  3. double? height,
  4. double? width,
  5. double? textSize,
  6. String? fullName,
  7. bool isCircle = true,
  8. bool isShowName = false,
  9. BoxFit? boxFit,
  10. Widget? placeHolder,
  11. double? radius,
  12. Widget? placeHoldChild,
  13. List<Color>? backgroundColorList,
  14. Color? backgroundColor,
})

Implementation

const AgCachedImage({
  super.key,
  required this.imageUrl,
  this.height,
  this.width,
  this.textSize,
  this.fullName,
  this.isCircle = true,
  this.isShowName = false,
  this.boxFit,
  this.placeHolder,
  this.radius,
  this.placeHoldChild,
  this.backgroundColorList,
  this.backgroundColor,
});