import 'package:json_annotation/json_annotation.dart'; part 'license.g.dart'; @JsonSerializable() class License { License({ required this.name, this.identifier, this.url, }); factory License.fromJson(final Map json) => _$LicenseFromJson(json); Map toJson() => _$LicenseToJson(this); final String name; final String? identifier; final String? url; }