copyWith method

SessionConfigSelect copyWith({
  1. Object? currentValue = _acpCopyWithAbsent,
  2. Object? options = _acpCopyWithAbsent,
})

Implementation

SessionConfigSelect copyWith({
  Object? currentValue = _acpCopyWithAbsent,
  Object? options = _acpCopyWithAbsent,
}) => SessionConfigSelect(
  currentValue: identical(currentValue, _acpCopyWithAbsent)
      ? this.currentValue
      : currentValue as SessionConfigValueId,
  options: identical(options, _acpCopyWithAbsent)
      ? this.options
      : options as SessionConfigSelectOptions,
);