copyWith method
Implementation
ReadTextFileResponse copyWith({
Object? content = _acpCopyWithAbsent,
Object? meta = _acpCopyWithAbsent,
}) => ReadTextFileResponse(
content: identical(content, _acpCopyWithAbsent)
? this.content
: content as String,
meta: identical(meta, _acpCopyWithAbsent) ? this.meta : meta as AcpJsonMap?,
);