CustomCard constructor

const CustomCard({
  1. Key? key,
  2. required String image,
  3. required String title,
  4. required String description,
})

Implementation

const CustomCard({
  Key? key,
  required this.image,
  required this.title,
  required this.description,
}) : super(key: key);