clearContext method

void clearContext(
  1. String transactionId
)

Implementation

void clearContext(String transactionId) {
  final context = _contexts.remove(transactionId);
  if (context != null) {
    _contextStack.remove(transactionId);
    context.cleanup();
  }
}