removeQuickComment method Null safety

Future<NIMResult<void>> removeQuickComment(
  1. NIMMessage msg,
  2. int replyType,
  3. String ext,
  4. bool needPush,
  5. bool needBadge,
  6. String pushTitle,
  7. String pushContent,
  8. Map<String, Object> pushPayload
)

删除一条快捷评论

Implementation

Future<NIMResult<void>> removeQuickComment(NIMMessage msg, int replyType, String ext, bool needPush, bool needBadge, String pushTitle, String pushContent, Map<String, Object> pushPayload){
  return _platform.removeQuickComment(msg, replyType, ext, needPush, needBadge, pushTitle, pushContent, pushPayload);
}