copyWith method
Implementation
SessionConfigBoolean copyWith({Object? currentValue = _acpCopyWithAbsent}) =>
SessionConfigBoolean(
currentValue: identical(currentValue, _acpCopyWithAbsent)
? this.currentValue
: currentValue as bool,
);