class ActivityAction { int id; String title; String description; Set activityActionSet; ActivityAction({ required this.id, required this.title, required this.description, required this.activityActionSet, }); } class Set { String type; int total; int rest; Reps reps; Set({ required this.type, required this.total, required this.rest, required this.reps, }); } class Reps { String type; List tempo; List amounts; List weights; int rest; Reps({ required this.type, required this.tempo, required this.amounts, required this.weights, required this.rest, }); }