removeCollection static method

Future<NIMResult<int>> removeCollection(
  1. List<NIMCollection> collections
)

删除收藏

Implementation

static Future<NIMResult<int>> removeCollection(
    List<NIMCollection> collections) {
  return NimCore.instance.messageService
      .removeCollections(collections: collections);
}