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>{};
  var changedLibraries = this.changedLibraries;
  if (changedLibraries != null) {
    result['changedLibraries'] = changedLibraries
        .map((AvailableSuggestionSet value) => value.toJson())
        .toList();
  }
  var removedLibraries = this.removedLibraries;
  if (removedLibraries != null) {
    result['removedLibraries'] = removedLibraries;
  }
  return result;
}