Payload constructor

Payload({
  1. required String handle,
  2. required List<Item> items,
  3. String? orderNSU,
  4. String? redirectUrl,
  5. String? webhookUrl,
  6. Customer? customer,
  7. Address? address,
})

Implementation

Payload({
  required this.handle,
  required this.items,
  this.orderNSU,
  this.redirectUrl,
  this.webhookUrl,
  this.customer,
  this.address,
});