copyWithWrapped method
Implementation
AgentCallLimits copyWithWrapped(
{Wrapped<int?>? agentConcurrencyLimit, Wrapped<int?>? dailyLimit}) {
return AgentCallLimits(
agentConcurrencyLimit: (agentConcurrencyLimit != null
? agentConcurrencyLimit.value
: this.agentConcurrencyLimit),
dailyLimit: (dailyLimit != null ? dailyLimit.value : this.dailyLimit));
}