ImageCard constructor

const ImageCard({
  1. required String imageUrl,
  2. String? title,
  3. String? subtitle,
  4. Component? overlay,
  5. double? height,
  6. double? radius,
  7. void onTap()?,
  8. BoxFit fit = BoxFit.cover,
  9. Key? key,
})

Implementation

const ImageCard({
  required this.imageUrl,
  this.title,
  this.subtitle,
  this.overlay,
  this.height,
  this.radius,
  this.onTap,
  this.fit = BoxFit.cover,
  super.key,
});