StripePayment constructor

StripePayment({
  1. required String userId,
  2. StripePurchaseMasamuneAdapter? adapter,
})

Manage Stripe payment information.

Actual payment information should be obtained from collectionQuery or other sources.

Stripeの支払い情報を管理します。

実際の支払い情報はcollectionQueryなどから取得してください。

Implementation

StripePayment({
  required this.userId,
  super.adapter,
});