CAppView constructor

CAppView({
  1. Key? key,
})

Implementation

CAppView({super.key}) {
  assert(
    !_isInitialized,
    "Only one CAppView can be created. It sets up a SPA.",
  );
  _isInitialized = true;
}