Skip to content

Commit

Permalink
added project id to tojson function
Browse files Browse the repository at this point in the history
  • Loading branch information
Benimautner committed Dec 23, 2023
1 parent 2b505ce commit ccef93c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/models/task.dart
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ class Task {
'repeat_after': repeatAfter?.inSeconds,
'hex_color': color?.value.toRadixString(16).padLeft(8, '0').substring(2),
'kanban_position': kanbanPosition,
'project_id': projectId,
'labels': labels.map((label) => label.toJSON()).toList(),
'subtasks': subtasks.map((subtask) => subtask.toJSON()).toList(),
'attachments':
Expand Down

0 comments on commit ccef93c

Please sign in to comment.