RefundDTO constructor

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

Implementation

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