notExists method

Future<bool> notExists(
  1. String path
)

\see exists

Implementation

Future<bool> notExists(String path) async => !(await exists(path));