toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final category = this.category;
final homepage = this.homepage;
final isFirstParty = this.isFirstParty;
final isUnrecognized = this.isUnrecognized;
final name = this.name;
final origins = this.origins;
return {
'category': ?category,
'homepage': ?homepage,
'isFirstParty': ?isFirstParty,
'isUnrecognized': ?isUnrecognized,
'name': ?name,
'origins': ?origins,
};
}