AnnotationDeclaration
data class AnnotationDeclaration(val name: String, val fqName: String, val arguments: List<AnnotationArgumentDeclaration> = emptyList())
Represents a parsed Kotlin annotation declared on a class.
Constructors
Link copied to clipboard
constructor(name: String, fqName: String, arguments: List<AnnotationArgumentDeclaration> = emptyList())