listFromJson static method

List<ProductSearchResponseFacetCountsFacetFields> listFromJson(
  1. dynamic json, {
  2. bool growable = false,
})

Implementation

static List<ProductSearchResponseFacetCountsFacetFields> listFromJson(
    dynamic json, {
      bool growable = false,
    }) {
  final result = <ProductSearchResponseFacetCountsFacetFields>[];
  if (json is List && json.isNotEmpty) {
    for (final row in json) {
      final value = ProductSearchResponseFacetCountsFacetFields.fromJson(row);
      if (value != null) {
        result.add(value);
      }
    }
  }
  return result.toList(growable: growable);
}