copyWith method

ToolCallLocation copyWith({
  1. Object? path = _acpCopyWithAbsent,
  2. Object? line = _acpCopyWithAbsent,
  3. Object? meta = _acpCopyWithAbsent,
})

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?,
);