copyWithWrapped method

PaymentInitiationRecipientCreateResponse copyWithWrapped({
  1. Wrapped<String>? recipientId,
  2. Wrapped<String>? requestId,
})

Implementation

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