copyWith method
Implementation
ToolCallLocation copyWith({
Object? path = _acpCopyWithAbsent,
Object? line = _acpCopyWithAbsent,
Object? meta = _acpCopyWithAbsent,
}) => ToolCallLocation(
path: identical(path, _acpCopyWithAbsent) ? this.path : path as String,
line: identical(line, _acpCopyWithAbsent) ? this.line : line as int?,
meta: identical(meta, _acpCopyWithAbsent) ? this.meta : meta as AcpJsonMap?,
);