RouteInfo constructor

RouteInfo({
  1. required String pageName,
  2. required String routeAddress,
  3. required Map<String, dynamic> params,
  4. required DateTime timestamp,
  5. bool isTransparent = false,
  6. bool isFullDialog = false,
  7. required String navigationId,
  8. required int stackDepth,
})

Implementation

RouteInfo({
  required this.pageName,
  required this.routeAddress,
  required this.params,
  required this.timestamp,
  this.isTransparent = false,
  this.isFullDialog = false,
  required this.navigationId,
  required this.stackDepth,
});