Let's say I have two functions: ```ImageView.phot...
# announcements
r
Let's say I have two functions:
Copy code
ImageView.photo(url: String) = { .. }
photo(url: String) = { .. }
Is there a way to call the second one in the scope of an ImageView like below?
Copy code
ImageView(context).apply {
    ...
    photo(url)
    ...
}
d
You can use fully qualified name of second function. Or import it with alias
Copy code
import my.super.package.photo as otherPhoto
r
Thnx!