getAppState<T> method

T getAppState<T>({
  1. required String key,
})

Provides the ability to get items from the global app state.

Implementation

T getAppState<T>({required String key}) {
  return CAppView.uiState.get<T>(key);
}