LicenseFile constructor

LicenseFile({
  1. required String id,
  2. required LicenseFileTypeEnum type,
  3. required LicenseFileAttributes attributes,
  4. required LicenseFileRelationships relationships,
})

Returns a new LicenseFile instance.

Implementation

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