Dependency constructor

Dependency({
  1. required String fromPath,
  2. required String toPath,
  3. DependencyType type = DependencyType.importDirective,
})

Implementation

Dependency({
  required this.fromPath,
  required this.toPath,
  this.type = DependencyType.importDirective,
});