copyWith method

TransferQuestionnaireCreateResponse copyWith({
  1. String? onboardingUrl,
  2. String? requestId,
})

Implementation

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