DirPath constructor

const DirPath({
  1. required String path,
  2. String? name,
  3. required bool allRecursive,
})

Implementation

const DirPath({
  required this.path,
  this.name,
  required this.allRecursive,
});