CustomerLicense constructor

CustomerLicense({
  1. String? applicationId,
  2. String? customerId,
  3. List<Editions>? editions,
  4. String? id,
  5. String? kind,
  6. String? state,
})

Implementation

CustomerLicense({
  this.applicationId,
  this.customerId,
  this.editions,
  this.id,
  this.kind,
  this.state,
});