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

```kotlin
public class MutableRemoteBoolean internal constructor(remoteInt: MutableRemoteInt) :
    RemoteBoolean(remoteInt), MutableRemoteState<Boolean>
```

A mutable implementation of [RemoteBoolean](/jetpack-compose/androidx.compose.remote/remote-creation-compose/classes/RemoteBoolean).

## Companion Object

#### Methods

<h2 id="createmutable-initialvalue">createMutable</h2>

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

```kotlin
public fun createMutable(initialValue: Boolean): MutableRemoteBoolean
```

Creates a [MutableRemoteBoolean](/jetpack-compose/androidx.compose.remote/remote-creation-compose/classes/MutableRemoteBoolean) with an initial value.

#### Parameters

| | |
| --- | --- |
| initialValue | The initial value for this mutable boolean. |

#### Returns

| | |
| --- | --- |
|  | A [MutableRemoteBoolean](/jetpack-compose/androidx.compose.remote/remote-creation-compose/classes/MutableRemoteBoolean) instance. |