this is my first post to StackOverflow. I have been struggling with the Map data. Itβs been taking too much time to find a way more than I thought...
Ex)
Map<String, int> someMap = {
"a": 1,
"b": 2,
"c": 3,
};
How can I add a new value to the same key Map? like this.
a:1, b:2, c:3,4,5,6etc....
I'd be grateful if you could tell me the correct way. Thank you.