reset method

  1. @mustCallSuper
Future<void> reset()

In case the policy depends on some internal state, this state must be reset to an initial state when reset is called. In case timers run, they must be terminated.

Implementation

@mustCallSuper
Future<void> reset() async {
  await _resetIsReconnecting();
}