paths property

List<PathWrapper<Path>> paths

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

Implementation

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

Implementation

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