stopPropagation method

void stopPropagation()

Prevents subsequent middlewares from processing this specific change.

Implementation

void stopPropagation() {
  _propagationStopped = true;
}