What is the equivalent of this python dictionary in Dart?

Viewed 18891

What is the equivalent of this python dictionary in Dart?

edges = {(1, 'a') : 2,
         (2, 'a') : 2,
         (2, '1') : 3,
         (3, '1') : 3}
3 Answers
Related