PathInfo constructor

PathInfo({
  1. required String source,
  2. bool invalid = false,
  3. String? ending,
  4. List<PathPair> pairs = const [],
  5. List<String> collections = const [],
  6. List<String> documents = const [],
})

Implementation

PathInfo({
  required this.source,
  this.invalid = false,
  this.ending,
  this.pairs = const [],
  this.collections = const [],
  this.documents = const [],
});