Flutter – How to filter list of objects according to it's property?
I'd like to eliminate duplicates based on the properties "name" and "price" of each element and filter the list accordingly. List<Connector> connectorList = [ Model(name : "Type A", price : 2.30, value : "Value 1"), Model(name : "Type B", price…