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