EventNavigationApp constructor

const EventNavigationApp({
  1. Key? key,
  2. required Widget builder(
    1. BuildContext
    ),
  3. String title = '',
  4. ThemeData? theme,
  5. ThemeData? darkTheme,
  6. ThemeMode? themeMode,
})

Implementation

const EventNavigationApp({
  Key? key,
  required this.builder,
  this.title = '',
  this.theme,
  this.darkTheme,
  this.themeMode,
}) : super(key: key);