Data binding to a Map in Angular Dart

Issue I’m trying to implement functionality for checking multiple items in a list of checkboxes. I am using a Map to store the data and its selected/unselected state. List<String> fruits = [ {‘fruit’: ‘apple’, ‘selected’: true}, {‘fruit’: ‘banana’, ‘selected’: true},

Continue reading