CreateOrderResponse constructor

CreateOrderResponse({
  1. required bool success,
  2. OrderDetail? order,
  3. String? orderId,
  4. String? orderSn,
  5. String? outOrderSn,
  6. double? totalAmount,
  7. int? totalQuantity,
  8. String? message,
})

Implementation

CreateOrderResponse({
  required this.success,
  this.order,
  this.orderId,
  this.orderSn,
  this.outOrderSn,
  this.totalAmount,
  this.totalQuantity,
  this.message,
});