go method

dynamic go(
  1. Route route
)

go to an other screen

Implementation

go(Route route) {
  Navigator.of(this).push(route);
}