toJson method

  1. @override
Map<String, Object> toJson()

Returns a JSON presentation of the object.

Implementation

@override
Map<String, Object> toJson() {
  var result = <String, Object>{};
  result['severity'] = severity.toJson();
  result['message'] = message;
  var location = this.location;
  if (location != null) {
    result['location'] = location.toJson();
  }
  return result;
}