HappyCamperProto2025/lib/task.dart

7 lines
101 B
Dart

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