deleteLocalMessage static method

Future<void> deleteLocalMessage(
  1. NIMMessage anchor
)

删除消息,本地删除

Implementation

static Future<void> deleteLocalMessage(NIMMessage anchor) {
  return NimCore.instance.messageService.deleteChattingHistory(anchor, false);
}