removeCollections method

Future<NIMResult<int>> removeCollections(
  1. {required List<NIMCollection> collections}
)

移除收藏

  • Parameter collections: 要移除的收藏列表

Implementation

Future<NIMResult<int>> removeCollections(
    {required List<NIMCollection> collections}) async {
  return _platform.removeCollections(collections: collections);
}