allPaused property

bool allPaused

Whether all managed StreamSubscriptions are currently paused.

Implementation

bool get allPaused =>
    _subscriptions.isNotEmpty ? _subscriptions.values.every((it) => it.isPaused) : false;