isAbsent method

  1. @override
Future<bool> isAbsent(
  1. Finder finder, {
  2. Duration? timeout = const Duration(seconds: 1),
})
override

Implementation

@override
Future<bool> isAbsent(
  Finder finder, {
  Duration? timeout = const Duration(seconds: 1),
}) async {
  return await isPresent(finder).then((value) => !value);
}