removeContexts method
Removes a value from the Scope's contexts
Implementation
Future<void> removeContexts(String key) async {
_contexts.remove(key);
await _callScopeObservers(
(scopeObserver) async => await scopeObserver.removeContexts(key));
}