unpin

public final Unit unpin(String subChannelId, OperationHandler<Boolean> handler)
@param subChannelId sub-channel ID, Corresponds to internal Conversation channelId Field

@param subChannelId sub-channel ID
```kotlin
communityChannel.unpin("subChannel001") { result, error ->
if (error == null) {
```kotlin
}
}

} }