InjectedDependency constructor

InjectedDependency({
  1. ImportableType? type,
  2. String? name,
  3. String? paramName,
  4. bool? isFactoryParam,
  5. bool? isPositional,
})

Implementation

InjectedDependency({
  this.type,
  this.name,
  this.paramName,
  this.isFactoryParam,
  this.isPositional,
});