FitImageCard constructor

const FitImageCard({
  1. Key? key,
  2. required void onTap(),
  3. required ImageProvider<Object> image,
  4. String? title,
  5. String? description,
  6. double height = 250,
  7. Color? textColor,
})

Creates a new FitImageCard.

Implementation

const FitImageCard({
  super.key,
  required this.onTap,
  required this.image,
  this.title,
  this.description,
  this.height = 250,
  this.textColor,
});