AnnotationArgument constructor

AnnotationArgument({
  1. required String source,
  2. required Element? element,
  3. required bool isInjectable,
  4. required ServerType type,
  5. required bool isRequired,
  6. required String parameterName,
})

Implementation

AnnotationArgument({
  required this.source,
  required this.element,
  required this.isInjectable,
  required this.type,
  required this.isRequired,
  required this.parameterName,
});