AppWrap constructor

const AppWrap({
  1. Key? key,
  2. required FutureProvider<AppConfigurationState> appConfigurationProvider,
  3. required Provider<List<ApplicationSection>> applicationSectionsProvider,
  4. required Provider<AppStartupService> appStartupServiceProvider,
  5. Provider<AuthService>? authServiceProvider,
  6. Provider<EventHandlerMapping>? eventHandlerMappingProvider,
  7. List<Override> otherOverrides = const [],
  8. required String mainTitle,
  9. ThemeData? theme,
  10. Provider<MediatorRequestHandlerMapping>? mediatorMappingsProvider,
})

Implementation

const AppWrap({
  super.key,
  required this.appConfigurationProvider,
  required this.applicationSectionsProvider,
  required this.appStartupServiceProvider,
  this.authServiceProvider,
  this.eventHandlerMappingProvider,
  this.otherOverrides = const [],
  required this.mainTitle,
  this.theme,
  this.mediatorMappingsProvider,
});