whereElement method

Iterable<Element> whereElement()

Implementation

Iterable<Element> whereElement() {
  return where((e) => e != null && e.isA<Element>()).cast<Element>();
}