ExpectNotVisible constructor

const ExpectNotVisible({
  1. required String text,
  2. int? timeout = 500,
})

Asserts that a node that matches the arguments is not visible.

This action can be invoked either using the short-hand version:

- expectNotVisible: "Hello World"

Or using the verbose version:

- expectNotVisible:
    text: "Hello World"
    timeout: 1000

Implementation

const ExpectNotVisible({
  required super.text,
  super.timeout = 500,
});