activeFor method

DownloadProgressSession? activeFor(
  1. String key
)

Implementation

DownloadProgressSession? activeFor(String key) {
  if (_activeKey != key) return null;
  return _active;
}