findByType

List<TestNode> findByType(

  1. String componentType
)

Find nodes by component type

Implementation

List<TestNode> findByType(String componentType) =>
    findAll((node) => node.type == componentType);