unSelectAssetEntity method

void unSelectAssetEntity(
  1. A entity
)

Un-select asset. 取消选中资源

Implementation

void unSelectAssetEntity(A entity) {
  final List<A> set = List<A>.from(currentlySelectedAssets);
  set.remove(entity);
  currentlySelectedAssets = List<A>.from(set);
}