How to modify a item from List of Maps in Flutter | Dart
I have a list of Map items. From this i want to modify a key value of an item by using it's id. The below is the List of map. List items = [{'id':'01','name':'Rahul'},{'id':'02','name':'John'},{'id':'03','name':'Marry'}]; From this list when i press…