CommonApp constructor

const CommonApp({
  1. Key? key,
  2. Widget child = const SizedBox(),
  3. List<SingleChildWidget>? providers,
  4. ThemeData? theme,
  5. List<NavigatorObserver>? navigatorObservers,
  6. ThemeMode? themeMode,
  7. ThemeData? darkTheme,
})

Implementation

const CommonApp(
    {super.key,
    this.child = const SizedBox(),
    this.providers,
    this.theme,
    this.navigatorObservers,
    this.themeMode,
    this.darkTheme});