mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-23 19:24:19 +01:00
example
This commit is contained in:
13
bindings/dart/example/lib/features/task/models/task.dart
Normal file
13
bindings/dart/example/lib/features/task/models/task.dart
Normal file
@@ -0,0 +1,13 @@
|
||||
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,
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user