GetDomainSuggestionsResponse.fromJson constructor
Implementation
factory GetDomainSuggestionsResponse.fromJson(Map<String, dynamic> json) {
return GetDomainSuggestionsResponse(
suggestionsList: (json['SuggestionsList'] as List?)
?.whereNotNull()
.map((e) => DomainSuggestion.fromJson(e as Map<String, dynamic>))
.toList(),
);
}