getTask method

Task? getTask(
  1. String id
)

Implementation

Task? getTask(String id) => _taskQueue.firstWhereOrNull((t) => t.id == id);