A pretty simple answer to this question is
final Map json = { "key1": {"key": [1,2,3]}, "key2": {"key": [4,5,7]}, "key3": {"key": [8,9,10]}, }; final firstEntry = json.entries.toList()[1].value; print(firstEntry);