copyWith method
Implementation
SetSessionConfigOptionRequestValueId copyWith({
Object? sessionId = _acpCopyWithAbsent,
Object? configId = _acpCopyWithAbsent,
Object? meta = _acpCopyWithAbsent,
Object? value = _acpCopyWithAbsent,
}) => SetSessionConfigOptionRequestValueId(
sessionId: identical(sessionId, _acpCopyWithAbsent)
? this.sessionId
: sessionId as SessionId,
configId: identical(configId, _acpCopyWithAbsent)
? this.configId
: configId as SessionConfigId,
meta: identical(meta, _acpCopyWithAbsent) ? this.meta : meta as AcpJsonMap?,
value: identical(value, _acpCopyWithAbsent)
? this.value
: value as SessionConfigValueId,
);