route method

void route(
  1. String link
)

Navigate to a page with the specified link. link is a string set in StandardPageFactory under links. pushParentPage indicates whether to push the parent page when navigating to a child page. default is true.

Implementation

void route(String link) async {
  return standardAppPlugin.route(link);
}