ModalCheckOutButtons constructor

const ModalCheckOutButtons({
  1. Key? key,
  2. required Widget checkOutButton(
    1. List<CartItem> cartList
    ),
  3. required Widget checkOutPaypalButton(
    1. List<CartItem> cartList
    ),
})

Implementation

const ModalCheckOutButtons({
  Key? key,
  required this.checkOutButton,
  required this.checkOutPaypalButton,
}) : super(key: key);