I want to also make sure that I'm searching for the function name that comes from the material package.
Does this make sense or is it horribly wrong? (it works, I just want to make sure that theres no better way to check for package location)
```
override fun getApplicableMethodNames(): List<String>? = listOf("OutlinedTextField")
override fun visitMethodCall(context: JavaContext, node: UCallExpression, method: PsiMethod) {
val evaluator = context.evaluator
if (evaluator.getPackage(method).toString().contains("androidx.compose.material")) {
reportUsage(context, node)
}
}
```