copyWith method

SessionConfigBoolean copyWith({
  1. Object? currentValue = _acpCopyWithAbsent,
})

Implementation

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