componentsByType<T> method

  1. @override
Iterable<T> componentsByType<T>()
override

Used to find component by type.

Implementation

@override
Iterable<T> componentsByType<T>() {
  return children.whereType<T>();
}