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