isActive method

bool isActive(
  1. String id
)

Checks if a progress with the given ID is active

Implementation

bool isActive(String id) {
  return _activeProgress.containsKey(id);
}