copyWith method

ReadTextFileResponse copyWith({
  1. Object? content = _acpCopyWithAbsent,
  2. Object? meta = _acpCopyWithAbsent,
})

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