LicenseObject constructor

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

Creates a LicenseObject with the given name and optional url.

Implementation

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