removeCollect method Null safety

Future<NIMResult<int>> removeCollect(
  1. List<NIMCollectInfo> collects
)

Batch remove messages from the favorites.

id and createTime of NIMCollectInfo are required parameters.

Implementation

Future<NIMResult<int>> removeCollect(List<NIMCollectInfo> collects) {
  return _platform.removeCollect(collects);
}