SearchFindElementReferencesResult.fromResponse constructor

SearchFindElementReferencesResult.fromResponse(
  1. Response response
)

Implementation

factory SearchFindElementReferencesResult.fromResponse(Response response) {
  return SearchFindElementReferencesResult.fromJson(
      ResponseDecoder(REQUEST_ID_REFACTORING_KINDS.remove(response.id)),
      'result',
      response.result);
}