copyWith method
Implementation
TransferQuestionnaireCreateResponse copyWith(
{String? onboardingUrl, String? requestId}) {
return TransferQuestionnaireCreateResponse(
onboardingUrl: onboardingUrl ?? this.onboardingUrl,
requestId: requestId ?? this.requestId);
}