WaitUntilVisibleTimeoutException constructor
Creates a new WaitUntilVisibleTimeoutException with finder which did
not find any visible widget and timed out.
Implementation
WaitUntilVisibleTimeoutException({
required super.finder,
required super.duration,
}) : super(
message:
'Finder "$finder" did not find any visible (i.e. hit-testable) widgets',
);