ChannelInfoMemberViewController

constructor(cid: String, memberId: String, scope: CoroutineScope, chatClient: ChatClient = ChatClient.instance(), channelState: Flow<ChannelState> = chatClient .watchChannelAsState(cid = cid, messageLimit = 0, coroutineScope = scope) .filterNotNull())

Parameters

cid

The full channel identifier (e.g., "messaging:123").

memberId

The member ID of the user whose information is being managed.

scope

The CoroutineScope used for launching coroutines.

chatClient

The ChatClient instance used for interacting with the chat API.

channelState

A Flow representing the state of the channel.