copyWith method
Implementation
TextContent copyWith({
Object? annotations = _acpCopyWithAbsent,
Object? text = _acpCopyWithAbsent,
Object? meta = _acpCopyWithAbsent,
}) => TextContent(
annotations: identical(annotations, _acpCopyWithAbsent)
? this.annotations
: annotations as Annotations?,
text: identical(text, _acpCopyWithAbsent) ? this.text : text as String,
meta: identical(meta, _acpCopyWithAbsent) ? this.meta : meta as AcpJsonMap?,
);