class Task { Task({required this.text, this.complete = false}); String text; bool complete; }