18 lines
334 B
Dart
18 lines
334 B
Dart
|
|
class UpdateTodoParams {
|
||
|
|
final String? title;
|
||
|
|
final String? description;
|
||
|
|
final bool? isCompleted;
|
||
|
|
final String? priority;
|
||
|
|
final DateTime? dueDate;
|
||
|
|
final int? sortOrder;
|
||
|
|
|
||
|
|
const UpdateTodoParams({
|
||
|
|
this.title,
|
||
|
|
this.description,
|
||
|
|
this.isCompleted,
|
||
|
|
this.priority,
|
||
|
|
this.dueDate,
|
||
|
|
this.sortOrder,
|
||
|
|
});
|
||
|
|
}
|