copyWith method

SessionConfigSelectOptionsUngrouped copyWith({
  1. Object? value = _acpCopyWithAbsent,
})

Implementation

SessionConfigSelectOptionsUngrouped copyWith({
  Object? value = _acpCopyWithAbsent,
}) => SessionConfigSelectOptionsUngrouped(
  identical(value, _acpCopyWithAbsent)
      ? this.value
      : value as List<SessionConfigSelectOption>,
);