StoreLicense constructor

const StoreLicense({
  1. bool? isActive,
  2. bool? isEntitled,
  3. String? skuStoreId,
  4. String? productStoreId,
  5. String? inAppOfferToken,
  6. num? expirationDate,
  7. int? expirationDateEpochMilliseconds,
  8. String? extendedJsonData,
})

Creates an add-on license value.

Implementation

const StoreLicense({
  this.isActive,
  this.isEntitled,
  this.skuStoreId,
  this.productStoreId,
  this.inAppOfferToken,
  this.expirationDate,
  this.expirationDateEpochMilliseconds,
  this.extendedJsonData,
});