getCurrentRouteData static method

  1. @Deprecated(''' RouteData is not gonna update when we have change the route path. Now, the RouteData only have the original page's information as the first screen you run in to the app. ''')
RouteData? getCurrentRouteData()

Implementation

@Deprecated('''
RouteData is not gonna update when we have change the route path.
Now, the RouteData only have the original page's information
as the first screen you run in to the app.
''')
static RouteData? getCurrentRouteData() =>
    (globalNavigatorKey.currentState?.widget.pages.first.key as ValueKey?)
        ?.value as RouteData?;