UpApp constructor

const UpApp({
  1. Key? key,
  2. String title = "",
  3. required UpThemeData theme,
  4. required List<UpRoute> upRoutes,
  5. String? initialRoute,
  6. GlobalKey<NavigatorState>? parentNavigatorKey,
})

Implementation

const UpApp({
  Key? key,
  this.title = "",
  required this.theme,
  required this.upRoutes,
  this.initialRoute,
  this.parentNavigatorKey,
}) : super(key: key);