Current path and filename of the task queue.
Future<String?> get filename async { if (_filename == null) { String? path = await Settings().carpBasePath; _filename = '$path/tasks.json'; } return _filename; }