toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final adsSeverity = this.adsSeverity;
final affectedRegions = this.affectedRegions;
final attributeName = this.attributeName;
final description = this.description;
final detail = this.detail;
final documentation = this.documentation;
final errorCode = this.errorCode;
return {
'adsSeverity': ?adsSeverity,
'affectedRegions': ?affectedRegions,
'attributeName': ?attributeName,
'description': ?description,
'detail': ?detail,
'documentation': ?documentation,
'errorCode': ?errorCode,
};
}