copyWith method
Implementation
DepositSwitchCreateRequestOptions copyWith(
{String? webhook, List<String>? transactionItemAccessTokens}) {
return DepositSwitchCreateRequestOptions(
webhook: webhook ?? this.webhook,
transactionItemAccessTokens:
transactionItemAccessTokens ?? this.transactionItemAccessTokens);
}