I want to Update a array inside a map
Map<int, List<String>> testtable = {
1: ['a', 'b', 'c', 'e'],
2: ['f', 'g', 'h', 'j'],
};
I want to Update e => d in array which has key = 1 ,
I Have Tried this testtable.update(1, (list[3]) => d); but doesn't work