InjectedDependency constructor

InjectedDependency(
  1. {required ImportableType type,
  2. required String paramName,
  3. String? instanceName,
  4. bool isFactoryParam = false,
  5. bool isPositional = true}
)

Implementation

InjectedDependency({
  required this.type,
  required this.paramName,
  this.instanceName,
  this.isFactoryParam = false,
  this.isPositional = true,
});