BillingFeatureConfig constructor

const BillingFeatureConfig({
  1. required List<Product> products,
  2. Duration paymentTimeout = const Duration(seconds: 60),
  3. String successUrl = '',
  4. String cancelUrl = '',
})

Implementation

const BillingFeatureConfig({
  required this.products,
  this.paymentTimeout = const Duration(seconds: 60),
  this.successUrl = '',
  this.cancelUrl = '',
});