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