SubZeroAddItem constructor

const SubZeroAddItem({
  1. Key? key,
  2. SubZeroAddItemConfig config = const SubZeroAddItemConfig(),
  3. ValueChanged<int>? onQuantityChanged,
  4. VoidCallback? onMoreTapped,
  5. VoidCallback? onItemAdded,
  6. int? quantity,
  7. bool startInQuantityMode = false,
})

Implementation

const SubZeroAddItem({
  super.key,
  this.config = const SubZeroAddItemConfig(),
  this.onQuantityChanged,
  this.onMoreTapped,
  this.onItemAdded,
  this.quantity,
  this.startInQuantityMode = false,
});