setView method

Future<void> setView(
  1. String view
)

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"');
}