copyWith method
Implementation
ToolUseBlock copyWith({
String? id,
String? name,
Map<String, dynamic>? input,
String? caller,
}) => ToolUseBlock(
id: id ?? this.id,
name: name ?? this.name,
input: input ?? this.input,
caller: caller ?? this.caller,
);