allPaused property
bool
get
allPaused
Whether all managed StreamSubscriptions are currently paused.
Implementation
bool get allPaused =>
_subscriptionsList.isNotEmpty &&
_subscriptionsList.every((s) => s.isPaused);