getAllByTag method
Returns nested tags with the matching tag.
Method only traverses substructures.
Implementation
@override
Iterable<T> getAllByTag(String tag) {
return substructures.where((structure) => structure.tag == tag);
}
Returns nested tags with the matching tag.
Method only traverses substructures.
@override
Iterable<T> getAllByTag(String tag) {
return substructures.where((structure) => structure.tag == tag);
}