TransferUserAddressInResponse constructor

TransferUserAddressInResponse({
  1. required String? street,
  2. required String? city,
  3. required String? region,
  4. required String? postalCode,
  5. required String? country,
})

Implementation

TransferUserAddressInResponse({
  required this.street,
  required this.city,
  required this.region,
  required this.postalCode,
  required this.country,
});