IapConfig constructor

const IapConfig({
  1. required List<SubscriptionItem> skuConverter(
    1. List<IAPItem>
    ),
  2. int maxRetryConnectBilling = 2,
  3. List<String> skuList = const [],
  4. List<String> offeringSkuList = const [],
  5. int limitFreeUsage = 10,
})

Implementation

const IapConfig({
  required this.skuConverter,
  this.maxRetryConnectBilling = 2,
  this.skuList = const [],
  this.offeringSkuList = const [],
  this.limitFreeUsage = 10,
});