GetFacetResponse.fromJson constructor

GetFacetResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory GetFacetResponse.fromJson(Map<String, dynamic> json) {
  return GetFacetResponse(
    facet: json['Facet'] != null
        ? Facet.fromJson(json['Facet'] as Map<String, dynamic>)
        : null,
  );
}