addQuickComment method Null safety

Future<NIMResult<int>> addQuickComment(
  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<int>> addQuickComment(NIMMessage msg, int replyType, String ext, bool needPush, bool needBadge, String pushTitle, String pushContent, Map<String, Object> pushPayload){
  return _platform.addQuickComment(msg, replyType, ext, needPush, needBadge, pushTitle, pushContent, pushPayload);
}