findPath method

Future<String?> findPath()

Search for the configuration file, and return the path.

Returns null if no configuration was found.

Implementation

Future<String?> findPath() async {
  final match = await findConfig();
  return match?.path;
}