parse static method

SearchResults parse(
  1. Map m
)

Implementation

static SearchResults parse(Map m) => new SearchResults(
    m['id'],
    new List.from(m['results'].map((obj) => SearchResult.parse(obj))),
    m['isLast']);