pop method

void pop(
  1. String message
)

Escapes the current Bubble.

Implementation

void pop(final String message) {
  sink.add(Response(message, Level.error));
  _setDepth(_getDepth() - 1);
}