getCurrentDirectory method

Future<String> getCurrentDirectory()

Implementation

Future<String> getCurrentDirectory() async {
  return Directory.current.path;
}