removeMessagePin method

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

删除一条消息的PIN

message 被PIN的消息 ext 扩展字段

Implementation

Future<NIMResult<void>> removeMessagePin(NIMMessage message, String? ext) {
  return _platform.removeMessagePin(message, ext);
}