toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final applicableCountries = this.applicableCountries;
final attribute = this.attribute;
final description = this.description;
final destination = this.destination;
final resolution = this.resolution;
final severity = this.severity;
final timestamp = this.timestamp;
final title = this.title;
final type = this.type;
return {
'applicableCountries': ?applicableCountries,
'attribute': ?attribute,
'description': ?description,
'destination': ?destination,
'resolution': ?resolution,
'severity': ?severity,
'timestamp': ?timestamp,
'title': ?title,
'type': ?type,
};
}