Routable constructor

const Routable({
  1. bool navigateToExtension = true,
  2. bool replaceWithExtension = true,
  3. bool rootToExtension = true,
  4. String? path,
  5. Type? pageRouteBuilder,
  6. RouteBuilder routeBuilder = RouteBuilder.noTransition,
})

Implementation

const Routable({
  this.navigateToExtension = true,
  this.replaceWithExtension = true,
  this.rootToExtension = true,
  this.path,
  this.pageRouteBuilder,
  this.routeBuilder = RouteBuilder.noTransition,
});