License constructor

License({
  1. required String id,
  2. required LicenseTypeEnum type,
  3. required LicenseAttributes attributes,
  4. required LicenseRelationships relationships,
  5. required SelfLinks links,
})

Returns a new License instance.

Implementation

License({
  required this.id,
  required this.type,
  required this.attributes,
  required this.relationships,
  required this.links,
});