我有类似的东西:
Element html = DivElement();
我从具有 html 元素属性的类型列表中添加一些子项:
for(var base in bases){
html.children.add(base.html);
}
有没有一种方法可以像在 C# 语法中那样在 Dart 中执行此操作?
html.children.addAll(base.select(o => o.html)); //no need for a for-in loop now