RouteBuilder constructor

const RouteBuilder({
  1. Key? key,
  2. Uri? url,
  3. String? routeId,
  4. bool includeDrafts = false,
  5. bool allowRefresh = true,
  6. bool isLive = false,
})

Implementation

const RouteBuilder({
  super.key,
  this.url,
  this.routeId,
  this.includeDrafts = false,
  this.allowRefresh = true,
  this.isLive = false,
});