PathUri constructor

const PathUri({
  1. required bool isAbsolute,
  2. required bool isDirectory,
  3. required BuiltList<String> pathSegments,
})

Creates a new path URI.

Implementation

const PathUri({
  required this.isAbsolute,
  required this.isDirectory,
  required this.pathSegments,
});