StackedApp constructor

const StackedApp({
  1. required List<StackedRoute> routes,
  2. List<StackedDialog>? dialogs,
  3. List<StackedBottomsheet>? bottomsheets,
  4. StackedLogger? logger,
  5. List<DependencyRegistration>? dependencies,
  6. String locatorName = 'locator',
  7. String locatorSetupName = 'setupLocator',
})

Implementation

const StackedApp({
  required this.routes,
  this.dialogs,
  this.bottomsheets,
  this.logger,
  this.dependencies,
  this.locatorName = 'locator',
  this.locatorSetupName = 'setupLocator',
});