deleteMessageByIds static method
批量删除消息
messageIds
需要删除的 messageId List
Implementation
static Future<void> deleteMessageByIds(List<int> messageIds, Function(int? code)? finished) async {
Map map = {"messageIds": messageIds};
int? code = await _channel.invokeMethod(RCMethodKey.DeleteMessageByIds, map);
if (finished != null) {
finished(code);
}
}