getProductsWithResponse function

IList<Product> getProductsWithResponse(
  1. String json
)

Implementation

IList<Product> getProductsWithResponse(String json) {
  return List<Product>.from(
          (jsonDecode(json) as List<dynamic>).map(Product.fromJson))
      .lock;
}