changeRoutePath method

void changeRoutePath(
  1. RoutePath routePath
)

Implementation

void changeRoutePath(RoutePath routePath) {
  logger.d('Changed path:' + routePath.routeName);

  SystemChrome.setApplicationSwitcherDescription(
      ApplicationSwitcherDescription(
    label: routePath.getRouteInstance.title,
    primaryColor: 0,
  ));

  this.routePath = routePath;
}