updateProgress method
Updates an existing progress by ID
Implementation
void updateProgress(
String id, {
String? title,
String? subtitle,
double? progress,
}) {
final controller = _activeProgress[id]?.controller;
controller?.updateAll(
title: title,
subtitle: subtitle,
progress: progress,
);
}