AdminBillingRefundRequest constructor

const AdminBillingRefundRequest({
  1. required String paymentIntentId,
  2. int? amountCents,
  3. String? reason,
})

Implementation

const AdminBillingRefundRequest({
  required this.paymentIntentId,
  this.amountCents,
  this.reason,
});