copyWith method
Implementation
SessionUpdatePlan copyWith({
Object? sessionUpdate = _acpCopyWithAbsent,
Object? entries = _acpCopyWithAbsent,
Object? meta = _acpCopyWithAbsent,
}) => SessionUpdatePlan(
sessionUpdate: identical(sessionUpdate, _acpCopyWithAbsent)
? this.sessionUpdate
: sessionUpdate as String,
entries: identical(entries, _acpCopyWithAbsent)
? this.entries
: entries as List<PlanEntry>,
meta: identical(meta, _acpCopyWithAbsent) ? this.meta : meta as AcpJsonMap?,
);