sendTypingStatus static method
发送输入状态
Implementation
static Future<void> sendTypingStatus(int conversationType, String targetId, String typingContentType) async {
Map paramMap = {
"conversationType": conversationType,
"targetId": targetId,
"typingContentType": typingContentType,
};
await _channel.invokeMethod(RCMethodKey.SendTypingStatus, paramMap);
}