79520627

Date: 2025-03-19 15:22:03
Score: 1
Natty:
Report link

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);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: we_mor