<div class='sourceset sourceset-android'>Android</div>

```kotlin
class ListItemGlow
constructor(
    val glow: Glow,
    val focusedGlow: Glow,
    val pressedGlow: Glow,
    val selectedGlow: Glow,
    val focusedSelectedGlow: Glow,
    val pressedSelectedGlow: Glow,
)
```

Represents the [Glow](/jetpack-compose/androidx.tv/tv-material/classes/Glow) of ListItem for different interaction states.

#### Parameters

| | |
| --- | --- |
| glow | the [Glow](/jetpack-compose/androidx.tv/tv-material/classes/Glow) used when the ListItem is enabled. |
| focusedGlow | the [Glow](/jetpack-compose/androidx.tv/tv-material/classes/Glow) used when the ListItem is enabled and focused. |
| pressedGlow | the [Glow](/jetpack-compose/androidx.tv/tv-material/classes/Glow) used when the ListItem is enabled and pressed. |
| selectedGlow | the [Glow](/jetpack-compose/androidx.tv/tv-material/classes/Glow) used when the ListItem is enabled and selected. |
| focusedSelectedGlow | the [Glow](/jetpack-compose/androidx.tv/tv-material/classes/Glow) used when the ListItem is enabled, focused and selected. |
| pressedSelectedGlow | the [Glow](/jetpack-compose/androidx.tv/tv-material/classes/Glow) used when the ListItem is enabled, pressed and selected. |