How to get the index of a single instance in a list?
class Points { int x, y; Point(this.x, this.y); } void main() { var pts = new List(); int Lx; int Ly; Points pt = new Points(25,55); // new instance pts.add(pt); int index = pts.indexOf(25); // Problem !!! How to obtain the index in a list of instances ? if (index != -1 ){ Lx = lp1.elementAt(index).x; Ly = lp1.elementAt(index).y; print('X=$Lx Y=$Ly'); }
source share