class Contact { final String address; bool isOpen; Contact({required this.address, required this.isOpen}); }