findDescendantsOfExactType method
Implementation
List<dynamic> findDescendantsOfExactType(Type? T,
{String? id, Type? breakOn}) {
var list = [];
children?.forEach((child) {
if (child.runtimeType != breakOn) {
list.addAll(child._findDescendantsOfExactType(T, id));
}
});
return list;
}