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