Explore constructor

const Explore({
  1. Key? key,
  2. required Category selectedCategory,
  3. required VoidCallback goToCheckout,
})

Implementation

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