copyWith method

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

Implementation

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