StripeRefundPurchaseAction constructor

const StripeRefundPurchaseAction({
  1. required String userId,
  2. required String orderId,
  3. double? refundAmount,
})

StripeFunctionsAction to refund a Stripe purchase.

Stripeの購入の返金を行うためのStripeFunctionsAction

Implementation

const StripeRefundPurchaseAction({
  required this.userId,
  required this.orderId,
  this.refundAmount,
});