copyWith method

DepositSwitchCreateRequestOptions copyWith({
  1. String? webhook,
  2. List<String>? transactionItemAccessTokens,
})

Implementation

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