InjectionException constructor

InjectionException(
  1. Type targetType,
  2. String fieldName,
  3. String message, {
  4. Object? cause,
})

Implementation

InjectionException(
  this.targetType,
  this.fieldName,
  String message, {
  this.cause,
}) : super(_createMessage(targetType, fieldName, message));