allWishListWithProductFromJson function

List<AllWishlistWithProduct> allWishListWithProductFromJson(
  1. dynamic str
)

Implementation

List<AllWishlistWithProduct> allWishListWithProductFromJson(dynamic str) =>
    List<AllWishlistWithProduct>.from(
        str.map((x) => AllWishlistWithProduct.fromJson(x)));