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['id'] = id;
  result['relevance'] = relevance;
  var displayUri = this.displayUri;
  if (displayUri != null) {
    result['displayUri'] = displayUri;
  }
  return result;
}