Figured it out. Turns out you can do: ```@Target...
# announcements
e
Figured it out. Turns out you can do:
Copy code
@Target(AnnotationTarget.FIELD)
annotation class Convo
to rid yourself of the need to specify the use-site target each time. e.g.
@field:Annotation
versus just
@Annotation
. 👍
👍 4
❤️ 1