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