resume method
- @mustCallSuper
Resumes the subscription to CustomProviderListenable.source. after a call to pause.
Implementation
@mustCallSuper
void resume() {
final wasPaused = _pauser._isPaused;
_pauser.resume();
if (wasPaused && !_pauser._isPaused) {
_outerSub?.reactivate();
}
}