Subscription constructor

Subscription({
  1. PaymentMethodEnum? paymentMethod,
  2. String? plan,
  3. String? billingAddress,
})

Returns a new Subscription instance.

Implementation

Subscription({
  this.paymentMethod,
  this.plan,
  this.billingAddress,
});