DartAnnotationValue constructor

const DartAnnotationValue({
  1. required String annotationName,
  2. List<String> stringArgs = const [],
  3. Map<String, String> namedArgs = const {},
})

Implementation

const DartAnnotationValue({
  required this.annotationName,
  this.stringArgs = const [],
  this.namedArgs = const {},
});