- created extract, goals and block card screen. - generated tests for design system components. - updated restore password and home screens to 17/11 design.
21 lines
299 B
Dart
21 lines
299 B
Dart
class Task{
|
|
|
|
final double rewardAmount;
|
|
final List<Subtask> subtasks;
|
|
|
|
const Task({
|
|
required this.rewardAmount,
|
|
this.subtasks = const []
|
|
});
|
|
}
|
|
|
|
class Subtask{
|
|
|
|
final String name;
|
|
final bool completed;
|
|
|
|
const Subtask({
|
|
required this.name,
|
|
required this.completed
|
|
});
|
|
} |