copyWithWrapped method

TransferIntentCreateResponse copyWithWrapped({
  1. Wrapped<TransferIntentCreate>? transferIntent,
  2. Wrapped<String>? requestId,
})

Implementation

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