CatalogRunner constructor

const CatalogRunner({
  1. Key? key,
  2. required GoRoute route,
  3. required Widget application,
  4. GlobalKey<ScaffoldMessengerState>? scaffoldMessengerKey,
  5. Key? appKey,
  6. Iterable<Locale>? supportedLocales,
  7. Iterable<LocalizationsDelegate>? localizationsDelegates,
  8. LocaleResolutionCallback? localeResolutionCallback,
  9. dynamic ready()?,
  10. ThemeData? theme,
  11. bool enabled = false,
})

Implementation

const CatalogRunner({
  super.key,
  required this.route,
  required this.application,
  this.scaffoldMessengerKey,
  this.appKey,
  this.supportedLocales,
  this.localizationsDelegates,
  this.localeResolutionCallback,
  this.ready,
  this.theme,
  this.enabled = false,
});