toJson method
Implementation
Map<String, dynamic> toJson() {
final _json = <String, dynamic>{};
if (errorName != null) {
_json['errorName'] = errorName;
}
if (paramsJson != null) {
_json['paramsJson'] = paramsJson;
}
return _json;
}