expectTextNotVisible function

void expectTextNotVisible(
  1. String text
)

Assert that the given text is not visible in the widget tree.

Example:

expectTextNotVisible('Error');
expectTextNotVisible('Loading...');

Implementation

void expectTextNotVisible(String text) {
  expect(
    find.text(text),
    findsNothing,
    reason: 'Expected text "$text" to not be visible',
  );
}