How do you change the value of a List[index].fieldname flutter?
How do you change the value of a List[index].fieldname flutter?
class Person {
String firstName;
String lastName;
}
//assuming contacts is a List<Person>
contacts[index].firstName = 'Tony';