Favourites constructor

const Favourites({
  1. Key? key,
  2. String? cardStyle,
  3. required VoidCallback goToCheckout,
})

Implementation

const Favourites({Key? key, this.cardStyle, required this.goToCheckout})
    : super(key: key);