CartAppBar constructor

const CartAppBar({
  1. required CartStep currentStep,
  2. ValueChanged<CartStep>? onStepChanged,
  3. Key? key,
})

Implementation

const CartAppBar({
  required this.currentStep,
  this.onStepChanged,
  super.key,
});