In dart language, I want to check if this array element=[1,1] exists in this array
list=[[0, 3], [0, 4], [1, 0], [1, 1], [1, 2], [1, 3]]
and give me the exact position if it does(3 in this case).
I tried indexOf but it doesn't work, always returns -1