toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final country = this.country;
final itemLevelIssues = this.itemLevelIssues;
final name = this.name;
final reportingContext = this.reportingContext;
final stats = this.stats;
return {
'country': ?country,
'itemLevelIssues': ?itemLevelIssues,
'name': ?name,
'reportingContext': ?reportingContext,
'stats': ?stats,
};
}