Task constructor
const
Task({})
Implementation
const Task({
required this.taskId,
required this.status,
required this.createdAt,
required this.lastUpdatedAt,
this.statusMessage,
this.ttlMs,
this.pollIntervalMs,
this.inputRequests,
this.result,
this.error,
});