class Client { final String code; final String title; final String address; final String phone; Client({ required this.code, required this.title, required this.address, required this.phone, }); }