copyWithWrapped method
TransferIntentCreateResponse
copyWithWrapped({
- Wrapped<
TransferIntentCreate> ? transferIntent, - 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));
}