1
0
mirror of https://github.com/go-vikunja/app synced 2024-06-03 02:59:47 +00:00

made task fields not final for easier modification in edit_task.dart

This commit is contained in:
benimautner 2022-04-10 18:57:34 +02:00
parent 3604e5a3b4
commit ce132fa33b

View File

@ -2,12 +2,12 @@ import 'package:vikunja_app/models/user.dart';
import 'package:meta/meta.dart';
class Task {
final int id;
final DateTime created, updated, due;
final List<DateTime> reminders;
final String title, description;
final bool done;
final User owner;
int id;
DateTime created, updated, due;
List<DateTime> reminders;
String title, description;
bool done;
User owner;
Task(
{@required this.id,