Link constructor

const Link({
  1. List<String>? paths,
  2. List<String> query = const [],
  3. Type? customHandler,
  4. List<String>? regexes,
  5. Type? customParamsMapper,
  6. List<String>? possibleFragments,
  7. List<List<String>>? queriesForPath,
  8. List<List<String>>? possibleFragmentsForPath,
})

Implementation

const Link({
  this.paths,
  this.query = const [],
  this.customHandler,
  this.regexes,
  this.customParamsMapper,
  this.possibleFragments,
  this.queriesForPath,
  this.possibleFragmentsForPath,
});