sendTyping method

Future<bool> sendTyping({
  1. required String convId,
  2. required TypingContent content,
  3. MsgOptionsModel? options,
  4. MsgOfflinePushModel? offlinePush,
  5. String ext = "",
})

发送正在输入

Implementation

Future<bool> sendTyping({
  required String convId,
  required TypingContent content,
  MsgOptionsModel? options,
  MsgOfflinePushModel? offlinePush,
  String ext = "",
}) async {
  return sendMsgList(
    msgModelList: [
      await createTyping(
        convId: convId,
        content: content,
        options: options,
        offlinePush: offlinePush,
        ext: ext,
      ),
    ],
  );
}