PetProfileCardThree constructor

const PetProfileCardThree({
  1. Key? key,
  2. required String title,
  3. required Color cardColor,
  4. required ImageProvider<Object> petImage,
})

Implementation

const PetProfileCardThree({
  Key? key,
  required this.title,
  required this.cardColor,
  required this.petImage,
}) : super(key: key);