ProKitApp constructor

const ProKitApp({
  1. Key? key,
  2. required Widget home,
  3. ThemeData? theme,
  4. ThemeData? darkTheme,
  5. String? title,
  6. bool? useInternetOverlay = false,
  7. ProKitThemeModel? customLightTheme,
  8. ProKitThemeModel? customDarkTheme,
})

Implementation

const ProKitApp({
  super.key,
  required this.home,
  this.theme,
  this.darkTheme,
  this.title,
  this.useInternetOverlay = false,
  this.customLightTheme,
  this.customDarkTheme,
});