LicenseRelationships constructor

LicenseRelationships({
  1. required LicenseRelationshipsAccount account,
  2. required LicenseRelationshipsProduct product,
  3. required LicenseRelationshipsPolicy policy,
  4. required LicenseRelationshipsGroup group,
  5. LicenseRelationshipsUser? user,
  6. required LicenseRelationshipsMachines machines,
})

Returns a new LicenseRelationships instance.

Implementation

LicenseRelationships({
  required this.account,
  required this.product,
  required this.policy,
  required this.group,
  this.user,
  required this.machines,
});