PaymentRefund constructor

const PaymentRefund({
  1. required String id,
  2. required Money amountMoney,
  3. required Money appFeeMoney,
  4. required DateTime createdAt,
  5. required String locationId,
  6. required String orderId,
  7. required String paymentId,
  8. required List<ProcessingFee> processingFee,
  9. required String reason,
  10. required PaymentRefundStatus status,
  11. required DateTime updatedAt,
})

Implementation

const PaymentRefund({
  required this.id,
  required this.amountMoney,
  required this.appFeeMoney,
  required this.createdAt,
  required this.locationId,
  required this.orderId,
  required this.paymentId,
  required this.processingFee,
  required this.reason,
  required this.status,
  required this.updatedAt,
});