part 'g/license.g.dart'; class License { String name; String spdxId; License(this.name,this.spdxId); factory License.fromJson(Map json) => _$LicenseFromJson(json); Map toJson() => _$LicenseToJson(this); }