copyWithWrapped method
Implementation
DepositSwitchCreateRequestOptions copyWithWrapped(
{Wrapped<String?>? webhook,
Wrapped<List<String>?>? transactionItemAccessTokens}) {
return DepositSwitchCreateRequestOptions(
webhook: (webhook != null ? webhook.value : this.webhook),
transactionItemAccessTokens: (transactionItemAccessTokens != null
? transactionItemAccessTokens.value
: this.transactionItemAccessTokens));
}