copyWithWrapped method
Implementation
AgentTransfer copyWithWrapped(
{Wrapped<String>? agentId, Wrapped<String>? condition}) {
return AgentTransfer(
agentId: (agentId != null ? agentId.value : this.agentId),
condition: (condition != null ? condition.value : this.condition));
}