copyWith method

TransferToAgentToolConfig copyWith({
  1. String? systemToolType,
  2. List<AgentTransfer>? transfers,
})

Implementation

TransferToAgentToolConfig copyWith(
    {String? systemToolType, List<AgentTransfer>? transfers}) {
  return TransferToAgentToolConfig(
      systemToolType: systemToolType ?? this.systemToolType,
      transfers: transfers ?? this.transfers);
}