Entitlement constructor

Entitlement({
  1. String? customerIdentifier,
  2. String? dimension,
  3. DateTime? expirationDate,
  4. String? productCode,
  5. EntitlementValue? value,
})

Implementation

Entitlement({
  this.customerIdentifier,
  this.dimension,
  this.expirationDate,
  this.productCode,
  this.value,
});