License constructor
Creates a License object.
Implementation
@JsonSerializable(includeIfNull: false)
const factory License({
/// The name of the license.
required String name,
/// A URL to the license information.
String? url,
}) = _License;