updateContext<T> method
Update context with key and value
key the name for the context (attribut) value can be int, double, String or boolean otherwise the update context skip with warnning log
Implementation
void updateContext<T>(String key, T value) {
// Delegate the action to strategy
_visitorDelegate.updateContext(key, value);
}