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