getSelectedCodecsIds static method
Returns list of int values which matches selected codecs id's
Implementation
static List<int> getSelectedCodecsIds(List<Codec> codecsList) {
List<int> ret = <int>[];
for(var c in codecsList) {
if(c.selected) ret.add(c.id);
}
return ret;
}