void navigateToChild(
String route,
[List<String> params = null]
)

Programmatically change current location (route) so that the specified child element of this element is visible. Calling this method will change window.location.href accordingly.

navigateToSibling("my-child");

Source

/// Programmatically change current location (route)
/// so that the specified child element of this element is visible.
/// Calling this method will change `window.location.href` accordingly.
///
///
///     navigateToSibling("my-child");
void navigateToChild(String route, [List<String> params = null]) {
  navigateAbsolute(absoluteRoute + "/" + route, params);
}