copyWith method
Implementation
SessionInfoUpdate copyWith({
Object? title = _acpCopyWithAbsent,
Object? updatedAt = _acpCopyWithAbsent,
Object? meta = _acpCopyWithAbsent,
}) => SessionInfoUpdate(
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>,
);