Search.fromJson constructor

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

Implementation

factory Search.fromJson(Map<String, dynamic> json) {
  return Search(
    displayable: json['Displayable'] as bool?,
    facetable: json['Facetable'] as bool?,
    searchable: json['Searchable'] as bool?,
    sortable: json['Sortable'] as bool?,
  );
}