bool containsID(String id) { for (HollisticMatchScoutingData r in _data) { if (r.id == id) { return true; } } return false; }