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['location'] = location.toJson();
  result['kind'] = kind.toJson();
  result['isPotential'] = isPotential;
  result['path'] = path.map((Element value) => value.toJson()).toList();
  return result;
}