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['libraryUri'] = libraryUri;
  result['className'] = className;
  result['name'] = name;
  var documentation = this.documentation;
  if (documentation != null) {
    result['documentation'] = documentation;
  }
  return result;
}