paths property

List<PathWrapper<AssetPathEntity>> paths
inherited

List for all path entity wrapped by PathWrapper. 所有资源路径的列表,以 PathWrapper 包装

Implementation

List<PathWrapper<Path>> get paths => _paths;
void paths=(List<PathWrapper<AssetPathEntity>> value)
inherited

Implementation

set paths(List<PathWrapper<Path>> value) {
  if (value != _paths) {
    _paths = value;
    notifyListeners();
  }
}