copyWithWrapped method

Implementation

DepositSwitchAltCreateRequest copyWithWrapped(
    {Wrapped<String?>? clientId,
    Wrapped<String?>? secret,
    Wrapped<DepositSwitchTargetAccount>? targetAccount,
    Wrapped<DepositSwitchTargetUser>? targetUser,
    Wrapped<DepositSwitchCreateRequestOptions?>? options,
    Wrapped<enums.DepositSwitchAltCreateRequestCountryCode?>? countryCode}) {
  return DepositSwitchAltCreateRequest(
      clientId: (clientId != null ? clientId.value : this.clientId),
      secret: (secret != null ? secret.value : this.secret),
      targetAccount:
          (targetAccount != null ? targetAccount.value : this.targetAccount),
      targetUser: (targetUser != null ? targetUser.value : this.targetUser),
      options: (options != null ? options.value : this.options),
      countryCode:
          (countryCode != null ? countryCode.value : this.countryCode));
}