expectTextNotVisible function
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',
);
}