CompletedAppTask constructor
Create a completed app task with the given taskName and taskType,
and optional taskData.
Implementation
CompletedAppTask({
required super.taskName,
required this.taskType,
super.taskData,
}) : super() {
completedAt = DateTime.now().toUtc();
}