restartPropagationIfStopped method

void restartPropagationIfStopped()

Events such as 'change' are immediately stopped after they reach a target that is listening for those events. Calling this method on event will force the framework to re-start propagation of that event.

Implementation

void restartPropagationIfStopped() {
  _isPropagationStopped = false;
}