StackRouterActions constructor
const
StackRouterActions({
- required dynamic child,
- required dynamic pushRoute(
- String route
- required dynamic popRoute([
- String route
- required void switchRoute(
- String route
- required dynamic showSnackBar({
- String route,
- required StackRouterSnackBar snackBar,
- required dynamic clearSnackBars({
- String route,
- required dynamic hideSnackBar({
- String route,
- dynamic key,
Implementation
const StackRouterActions({
required child,
required this.pushRoute,
required this.popRoute,
required this.switchRoute,
required this.showSnackBar,
required this.clearSnackBars,
required this.hideSnackBar,
key,
}) : super(key: key, child: child);