import 'package:PiliPlus/models_new/bubble/category_list.dart'; class Category { List? categoryList; Category({this.categoryList}); factory Category.fromJson(Map json) => Category( categoryList: (json['category_list'] as List?) ?.map((e) => CategoryList.fromJson(e as Map)) .toList(), ); }