Suppose the putExtra method of Intent is used as a sink which takes a key value parameter. For example
L1 : Intent i = new Intent()
L2: i.putExtra("Key","Value")
from L2 using explicit value finder I can get the values of the arguments passed into putExtra. But is it possible to fetch the Intent object from this line?
Thanks