import 'package:PiliPlus/models_new/follow/list.dart'; class FollowData { late List list; int? total; FollowData({required this.list, this.total}); factory FollowData.fromJson(Map json) => FollowData( list: (json['list'] as List?) ?.map((e) => FollowItemModel.fromJson(e as Map)) .toList() ?? [], total: json['total'] as int?, ); }