onPagePush method

void onPagePush(
  1. Route route
)

Implementation

void onPagePush(Route<dynamic> route) {
  nativeTryCatch(handler: () {
    GlobalStore.singleInstance
        .setProperty(name: KEY_USE_BOOST_PLUGIN, value: 1);
    ApmPerformance.singleInstance
        .pushEvent(RouterEvent(RouterEventType.push, route, null));
  });
}