FKappaApp constructor
const
FKappaApp({
- Key? key,
- required List<
FKappaModule> modules, - required String initialRoute,
- List<
FKappaMiddleware> globalMiddlewares = const [], - Storage? storage,
- String? baseUrl,
- FKappaEnv? env,
- List<
Interceptor> ? interceptors, - ThemeData? theme,
- ThemeData? darkTheme,
- ThemeMode themeMode = ThemeMode.system,
- String title = 'fkappa App',
- bool debugShowCheckedModeBanner = true,
Implementation
const FKappaApp({
super.key,
required this.modules,
required this.initialRoute,
this.globalMiddlewares = const [],
this.storage,
this.baseUrl,
this.env,
this.interceptors,
this.theme,
this.darkTheme,
this.themeMode = ThemeMode.system,
this.title = 'fkappa App',
this.debugShowCheckedModeBanner = true,
});