copyWith method

Implementation copyWith({
  1. Object? name = _acpCopyWithAbsent,
  2. Object? title = _acpCopyWithAbsent,
  3. Object? version = _acpCopyWithAbsent,
  4. Object? meta = _acpCopyWithAbsent,
})

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