PaymentRefundResponse constructor

const PaymentRefundResponse({
  1. required String id,
  2. String type = 'refund',
  3. required PaymentRefundResponseAttributes attributes,
  4. required DateTime? availableAt,
  5. required DateTime? createdAt,
  6. required DateTime? paidAt,
  7. required DateTime? updatedAt,
})

Implementation

const PaymentRefundResponse({
  required this.id,
  this.type = 'refund',
  required this.attributes,
  required this.availableAt,
  required this.createdAt,
  required this.paidAt,
  required this.updatedAt,
});