allWishListVerificationFromJson function

List<AllWishlistForVerfication> allWishListVerificationFromJson(
  1. dynamic str
)

Implementation

List<AllWishlistForVerfication> allWishListVerificationFromJson(dynamic str) =>
    List<AllWishlistForVerfication>.from(
        str.map((x) => AllWishlistForVerfication.fromJson(x)));