copyWith method
Implementation
SessionUpdateSessionInfoUpdate copyWith({
Object? sessionUpdate = _acpCopyWithAbsent,
Object? title = _acpCopyWithAbsent,
Object? updatedAt = _acpCopyWithAbsent,
Object? meta = _acpCopyWithAbsent,
}) => SessionUpdateSessionInfoUpdate(
sessionUpdate: identical(sessionUpdate, _acpCopyWithAbsent)
? this.sessionUpdate
: sessionUpdate as String,
title: identical(title, _acpCopyWithAbsent)
? this.title
: title as AcpField<String>,
updatedAt: identical(updatedAt, _acpCopyWithAbsent)
? this.updatedAt
: updatedAt as AcpField<String>,
meta: identical(meta, _acpCopyWithAbsent)
? this.meta
: meta as AcpField<AcpJsonMap>,
);