MedicineAppBar constructor

MedicineAppBar({
  1. Key? key,
  2. required dynamic onBack,
  3. dynamic title,
  4. dynamic cartHideShow,
})

Implementation

MedicineAppBar({
  super.key,
  required this.onBack,
  this.title,
  this.cartHideShow,
});