AgCachedImage constructor

AgCachedImage({
  1. Key? key,
  2. required String? imageUrl,
  3. double? height,
  4. double? width,
  5. int? textSize,
  6. String? fullName,
  7. bool isCircle = true,
  8. bool isShowName = false,
  9. BoxFit? boxFit,
  10. Widget? placeHolder,
  11. Widget? placeHoldChild,
})

Implementation

AgCachedImage({
  Key? key,
  required this.imageUrl,
  this.height,
  this.width,
  this.textSize,
  this.fullName,
  this.isCircle = true,
  this.isShowName = false,
  this.boxFit,
  this.placeHolder,
  this.placeHoldChild,
}) : super(key: key);