BillingConfig constructor

BillingConfig({
  1. required BillingConfigProviderEnum provider,
  2. required String secretKey,
  3. String? webhookSecret,
  4. bool? isSandbox,
})

Returns a new BillingConfig instance.

Implementation

BillingConfig({
  required this.provider,
  required this.secretKey,
  this.webhookSecret,
  this.isSandbox,
});