LicenseObject constructor

const LicenseObject({
  1. required String name,
  2. String? url,
  3. String? identifier,
})

Creates a LicenseObject with the given name and optional url.

Implementation

const LicenseObject({required this.name, this.url, this.identifier});