FastAppLoader constructor

const FastAppLoader({
  1. Key? key,
  2. required WidgetBuilder appBuilder,
  3. Duration delayBeforeShowingLoader = const Duration(seconds: 1),
  4. Iterable<Locale> supportedLocales = kFastSupportedLocales,
  5. bool debugShowCheckedModeBanner = false,
  6. Iterable<LocalizationsDelegate>? localizationsDelegates,
  7. FastAppLoaderBuilder? loaderBuilder,
  8. IFastErrorReporter? errorReporter,
  9. FastAppLoaderErrorBuilder? errorBuilder,
  10. Iterable<FastJob>? loaderJobs,
  11. ThemeData? lightTheme,
  12. ThemeData? darkTheme,
  13. Locale? locale,
})

Implementation

const FastAppLoader({
  super.key,
  required this.appBuilder,
  this.delayBeforeShowingLoader = const Duration(seconds: 1),
  this.supportedLocales = kFastSupportedLocales,
  this.debugShowCheckedModeBanner = false,
  this.localizationsDelegates,
  this.loaderBuilder,
  this.errorReporter,
  this.errorBuilder,
  this.loaderJobs,
  this.lightTheme,
  this.darkTheme,
  this.locale,
});