What's the best way to annotate an interface property? I.E ```interface LocationRepository { @ge...
m
What's the best way to annotate an interface property? I.E
Copy code
interface LocationRepository {
    @get:RequiresPermission(value = Manifest.permission.ACCESS_FINE_LOCATION)
    val locations: Flow<Location>
}
This "compiles" but I dont get a warning/error later when calling repository.locations