ClientDto constructor
- required String phone,
- required String fullName,
- String? addressId,
- String? address2,
- required AddressDto address,
Implementation
ClientDto({
required this.phone,
required this.fullName,
this.addressId,
this.address2,
required this.address,
});