RefundDTO constructor

RefundDTO({
  1. String? id,
  2. String? createdAt,
  3. String? sku,
  4. int? quantity,
  5. String? type,
  6. String? status,
  7. bool? include,
  8. String? note,
  9. String? startDate,
  10. String? endDate,
  11. String? purchaseDate,
  12. double? purchasePrice,
  13. String? purchaseCurrency,
})

Implementation

RefundDTO({
  this.id,
  this.createdAt,
  this.sku,
  this.quantity,
  this.type,
  this.status,
  this.include,
  this.note,
  this.startDate,
  this.endDate,
  this.purchaseDate,
  this.purchasePrice,
  this.purchaseCurrency,
});