class Customer { final String name; final String address; const Customer({ required this.name, required this.address, }); }