1 2 3 4 5 6
class Contact { final String address; bool isOpen; Contact({required this.address, required this.isOpen}); }