copyWith method

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

Implementation

TransferUserAddressInResponse copyWith(
    {String? street,
    String? city,
    String? region,
    String? postalCode,
    String? country}) {
  return TransferUserAddressInResponse(
      street: street ?? this.street,
      city: city ?? this.city,
      region: region ?? this.region,
      postalCode: postalCode ?? this.postalCode,
      country: country ?? this.country);
}