Level3 constructor

const Level3({
  1. String? customerReference,
  2. required List<Level3LineItems> lineItems,
  3. required String merchantReference,
  4. String? shippingAddressZip,
  5. int? shippingAmount,
  6. String? shippingFromZip,
})

Level3

Implementation

const Level3({
  this.customerReference,
  required this.lineItems,
  required this.merchantReference,
  this.shippingAddressZip,
  this.shippingAmount,
  this.shippingFromZip,
});