17 lines
345 B
Dart
17 lines
345 B
Dart
import 'dart:collection';
|
|
import 'dart:ui';
|
|
|
|
class WorkoutTree {
|
|
int id;
|
|
int parent;
|
|
String name; // is also the key
|
|
String imageName;
|
|
Color color;
|
|
double fontSize;
|
|
bool child;
|
|
int exercise_type_id;
|
|
|
|
WorkoutTree(this.id, this.parent, this.name, this.imageName, this.color, this.fontSize, this.child, this.exercise_type_id);
|
|
|
|
}
|