toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
if (this.error != null) {
json[r'error'] = this.error;
} else {
json[r'error'] = null;
}
if (this.errorDescription != null) {
json[r'error_description'] = this.errorDescription;
} else {
json[r'error_description'] = null;
}
if (this.errorUri != null) {
json[r'error_uri'] = this.errorUri;
} else {
json[r'error_uri'] = null;
}
return json;
}