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['isCompatible'] = isCompatible;
  result['name'] = name;
  result['version'] = version;
  var contactInfo = this.contactInfo;
  if (contactInfo != null) {
    result['contactInfo'] = contactInfo;
  }
  result['interestingFiles'] = interestingFiles;
  return result;
}