copyWith method
Implementation
McpServerSse copyWith({
Object? name = _acpCopyWithAbsent,
Object? url = _acpCopyWithAbsent,
Object? headers = _acpCopyWithAbsent,
Object? meta = _acpCopyWithAbsent,
}) => McpServerSse(
name: identical(name, _acpCopyWithAbsent) ? this.name : name as String,
url: identical(url, _acpCopyWithAbsent) ? this.url : url as String,
headers: identical(headers, _acpCopyWithAbsent)
? this.headers
: headers as List<HttpHeader>,
meta: identical(meta, _acpCopyWithAbsent) ? this.meta : meta as AcpJsonMap?,
);