findByText

List<TestNode> findByText(

  1. String text, {
  2. bool exact = false,
})

Find nodes containing text.

Implementation

List<TestNode> findByText(String text, {bool exact = false}) =>
    _root.findByText(text, exact: exact);