InjectedDependency constructor

const InjectedDependency({
  1. required ImportableType type,
  2. required String paramName,
  3. String? instanceName,
  4. @Default(true) bool isPositional,
})

Implementation

const factory InjectedDependency({
  required ImportableType type,
  required String paramName,
  String? instanceName,
  @Default(true) bool isPositional,
}) = _InjectedDependency;