ClientDto constructor

ClientDto({
  1. required String phone,
  2. required String fullName,
  3. String? addressId,
  4. String? address2,
  5. required AddressDto address,
})

Implementation

ClientDto({
  required this.phone,
  required this.fullName,
  this.addressId,
  this.address2,
  required this.address,
});