allPaused property

bool allPaused

Whether all managed StreamSubscriptions are currently paused.

Implementation

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