copyWithWrapped method

PaymentInitiationConsentRevokeResponse copyWithWrapped({
  1. Wrapped<String?>? requestId,
})

Implementation

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