navigate method

Future<void> navigate(
  1. List<String> urlSegments
)

Navigate

Implementation

Future<void> navigate(List<String> urlSegments) async {
  this.currentRoute = this._router.tryParse(urlSegments);
  notifyListeners();
}