RoutePath constructor

RoutePath({
  1. String path = '',
  2. RoutePath? parent,
  3. bool useAsDefault = false,
  4. dynamic additionalData,
})

Implementation

RoutePath({
  String path = '',
  this.parent,
  this.useAsDefault = false,
  this.additionalData,
}) : path = Url.trimSlashes(path);