copyWithWrapped method

TransferQuestionnaireCreateResponse copyWithWrapped({
  1. Wrapped<String>? onboardingUrl,
  2. Wrapped<String>? requestId,
})

Implementation

TransferQuestionnaireCreateResponse copyWithWrapped(
    {Wrapped<String>? onboardingUrl, Wrapped<String>? requestId}) {
  return TransferQuestionnaireCreateResponse(
      onboardingUrl:
          (onboardingUrl != null ? onboardingUrl.value : this.onboardingUrl),
      requestId: (requestId != null ? requestId.value : this.requestId));
}