updateMessagePin method
- NIMMessage message,
- String? ext
更新一条消息的PIN
message
被PIN的消息
ext
扩展字段;如果 ext 为空表示删除该字段
Implementation
Future<NIMResult<void>> updateMessagePin(NIMMessage message, String? ext) {
return _platform.updateMessagePin(message, ext);
}