import '../classes/activity_action.dart'; class ActivityModel { ActivityModel( {required this.id, required this.title, required this.type, required this.categories, required this.description, required this.actions, this.resources}); final int id; final String title; final String type; final List categories; final String description; final List actions; final List? resources; }