Get a list of children that have given name.
name
List<T> getChildrenByName(String name) => where((tag) => tag.name == name).toList();