mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-23 11:14:19 +01:00
14 lines
234 B
Dart
14 lines
234 B
Dart
class Task {
|
|
final int id;
|
|
final String title;
|
|
final String description;
|
|
final bool completed;
|
|
|
|
const Task({
|
|
required this.id,
|
|
required this.title,
|
|
required this.description,
|
|
required this.completed,
|
|
});
|
|
}
|