leaveChatThread method Null safety
- {required String chatThreadId}
Leave Chat Thread.
The operation is available to Chat Thread members. After leave chat thread, the multiple devices will receive the notification event. You can set {@ChatMultiDeviceListener} to listen on the event. The event callback function is {@link ChatMultiDeviceListener#onChatThreadEvent(int, String, List), where the first parameter is the event, and chat thread exit event is {@link ChatMultiDeviceListener#ChatMultiDevicesEvent.CHAT_THREAD_LEAVE}.
Param chatThreadId Chat Thread ID.
Throws A description of the exception. See {@link ChatError}.
Implementation
Future<void> leaveChatThread({
required String chatThreadId,
}) async {
Map req = {
"threadId": chatThreadId,
};
Map result = await _channel.invokeMethod(
ChatMethodKeys.leaveChatThread,
req,
);
try {
ChatError.hasErrorFromResult(result);
} on ChatError catch (e) {
throw e;
}
}