CurrentRoute constructor

CurrentRoute({
  1. required BuildContext context,
  2. required RouteDefiner route,
  3. required RouteState state,
})

Creates a CurrentRoute with the given context, route, and state.

Implementation

CurrentRoute({
  required this.context,
  required this.route,
  required this.state,
});