copyWith method

Implementation

SandboxPublicTokenCreateRequestOptions copyWith(
    {String? webhook,
    String? overrideUsername,
    String? overridePassword,
    SandboxPublicTokenCreateRequestOptionsTransactions? transactions,
    SandboxPublicTokenCreateRequestOptionsIncomeVerification?
        incomeVerification}) {
  return SandboxPublicTokenCreateRequestOptions(
      webhook: webhook ?? this.webhook,
      overrideUsername: overrideUsername ?? this.overrideUsername,
      overridePassword: overridePassword ?? this.overridePassword,
      transactions: transactions ?? this.transactions,
      incomeVerification: incomeVerification ?? this.incomeVerification);
}