setView method
Establece el view por defecto para la sesión
Implementation
Future<void> setView(String view) async {
_currentView = view;
await ObslyStorage.instance.storeInternalState(_sessionViewKey, view);
ObslyLogger.debug('Session view set to: "$view"');
}