EmptyCartScreen constructor

const EmptyCartScreen({
  1. Key? key,
  2. required bool isTablet,
  3. required bool isPickerMode,
  4. required VoidCallback onScanBarcode,
  5. required VoidCallback onEnterBarcodeManually,
})

Implementation

const EmptyCartScreen({
  super.key,
  required this.isTablet,
  required this.isPickerMode,
  required this.onScanBarcode,
  required this.onEnterBarcodeManually,
});