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