toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() => {
if (category != null) 'category': category!,
if (homepage != null) 'homepage': homepage!,
if (isFirstParty != null) 'isFirstParty': isFirstParty!,
if (isUnrecognized != null) 'isUnrecognized': isUnrecognized!,
if (name != null) 'name': name!,
if (origins != null) 'origins': origins!,
};