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