sendTypingStatus method
Future<int>
sendTypingStatus(
- RCIMIWConversationType type,
- String targetId,
- String? channelId,
- String currentType,
向会话中发送正在输入的状态,目前只支持单聊。
type
会话类型targetId
会话 IDchannelId
频道 ID,仅支持超级群使用,其他会话类型传 null 即可。currentType
当前的状态返回值
当次接口操作的状态码。0 代表调用成功 具体结果需要实现接口回调,非 0 代表当前接口调用操作失败,不会触发接口回调,详细错误参考错误码
Implementation
Future<int> sendTypingStatus(RCIMIWConversationType type, String targetId,
String? channelId, String currentType) async {
return RCIMWrapperPlatform.instance
.sendTypingStatus(type, targetId, channelId, currentType);
}