Route constructor

Route(
  1. String route, {
  2. bool handleUnknownAsRoot = false,
  3. Component? child,
  4. Component? root,
})

Implementation

Route(
  this.route, {
  this.handleUnknownAsRoot = false,
  this.child,
  this.root,
});