copyWith method

PaymentProfileCreateResponse copyWith({
  1. String? paymentProfileToken,
  2. String? requestId,
})

Implementation

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