categoryPackWithSetListFromJson function

List<CategoryPackWithSet> categoryPackWithSetListFromJson(
  1. dynamic str
)

Implementation

List<CategoryPackWithSet> categoryPackWithSetListFromJson(dynamic str) =>
    List<CategoryPackWithSet>.from(
        str.map((x) => CategoryPackWithSet.fromJson(x)));