workouttest_app/lib/model/workout_tree.dart

22 lines
444 B
Dart

import 'dart:ui';
import 'exercise_type.dart';
class WorkoutTree {
int id;
int parent;
String name; // is also the key
String imageName;
Color color;
double fontSize;
bool child;
int exerciseTypeId;
ExerciseType exerciseType;
bool base;
bool is1RM;
WorkoutTree(this.id, this.parent, this.name, this.imageName, this.color, this.fontSize, this.child, this.exerciseTypeId, this.exerciseType, this.base, this.is1RM);
}