HappyCamperProto2025/lib/task.dart

7 lines
101 B
Dart
Raw Normal View History

2024-11-01 12:03:18 -04:00
class Task {
Task({required this.text, this.complete = false});
String text;
bool complete;
}