Android
public class MutableRemoteBoolean internal constructor(remoteInt: MutableRemoteInt) :
RemoteBoolean(remoteInt), MutableRemoteState<Boolean>
A mutable implementation of RemoteBoolean.
Companion Object
Methods
createMutable
Android
public fun createMutable(initialValue: Boolean): MutableRemoteBoolean
Creates a MutableRemoteBoolean with an initial value.
Parameters
| initialValue | The initial value for this mutable boolean. |
Returns
| A MutableRemoteBoolean instance. |