OrderResponse constructor

OrderResponse({
  1. List<SquareError>? errors,
  2. Order? order,
  3. List<Order>? orders,
  4. String? cursor,
  5. OrderEntry? orderEntries,
})

Implementation

OrderResponse({
  this.errors, this.order, this.orders, this.cursor, this.orderEntries
});