class ContactsModel { late String phone; late String mail; late String address; late String workHours; ContactsModel({ required this.phone, required this.mail, required this.address, required this.workHours, }); ContactsModel.fromJson(Map json) { phone = json['phone']; mail = json['mail'] ?? 'support@tehnikadunyasi.com'; address = json['address']; workHours = json['work_hours'] ?? 'Duşenbe - Anna: 09:00 - 18:00 \nŞenbe: 09:00 - 13:00'; } }