parse static method

Implementation

static CompletionAvailableSuggestions parse(Map m) =>
    new CompletionAvailableSuggestions(
        changedLibraries: m['changedLibraries'] == null
            ? null
            : new List.from(m['changedLibraries']
                .map((obj) => AvailableSuggestionSet.parse(obj))),
        removedLibraries: m['removedLibraries'] == null
            ? null
            : new List.from(m['removedLibraries']));