removeMessagePin static method

Future<NIMResult<void>> removeMessagePin(
  1. NIMMessage message, {
  2. String? ext,
})

移除pin消息

Implementation

static Future<NIMResult<void>> removeMessagePin(NIMMessage message,
    {String? ext}) {
  return NimCore.instance.messageService.removeMessagePin(message, ext);
}