getProductsWithResponse function

List<Product> getProductsWithResponse(
  1. String str
)

Implementation

List<Product> getProductsWithResponse(String str) =>
    List<Product>.from(jsonDecode(str).map((x) => Product.fromJson(x)));