copyWithWrapped method

AgentTransfer copyWithWrapped({
  1. Wrapped<String>? agentId,
  2. Wrapped<String>? condition,
})

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));
}