CheckoutData constructor

CheckoutData({
  1. Map<String, dynamic>? metadata,
  2. required Order order,
  3. Shopper? shopper,
})

Implementation

CheckoutData({
  this.metadata,
  required this.order,
  this.shopper,
});