exists static method

Future<bool> exists([
  1. String path = _defaultPath
])

Returns true if a config file exists at path.

Implementation

static Future<bool> exists([String path = _defaultPath]) =>
    File(path).exists();