leaveScope method

  1. @override
Future<void> leaveScope(
  1. String scopeName
)
override

Signals that the application has left the scope with the given scopeName.

This will notify all registered ScopeHandlers to handle the scope exit.

Implementation

@override
Future<void> leaveScope(final String scopeName) {
  return _realWeaver.leaveScope(scopeName);
}