Cover constructor

Cover({
  1. String? coverUrl,
  2. dynamic onTap()?,
  3. Color? placeHolderColor,
  4. Color? loadingColor,
  5. Icon? placeHolderIcon,
  6. double? width,
  7. Color? failedColor,
  8. IconData? failedIcon = Icons.image_not_supported,
  9. double borderRadius = 0,
  10. BoxFit? imageFit,
  11. double? height,
})

Implementation

Cover({this.coverUrl,
  this.onTap,
  this.placeHolderColor,
  this.loadingColor,
  this.placeHolderIcon,
  this.width,
  this.failedColor,
  this.failedIcon = Icons.image_not_supported,
  this.borderRadius = 0,
  this.imageFit, this.height});