Please help me out,
i have a multilist with a type of string:
List<List<String>> mergedList = [["39", "Green"], ["40", "Blue"], ["39", "Blue"], ["40", "Green"]]
i want to find the index of ["39", "Green"] by using indexOf like this:
mergedList.indexOf(["39","Green"])
but instead it always return -1.
please help where did i do wrong