getLocalPath static method

Future<String> getLocalPath()

Implementation

static Future<String> getLocalPath() async {
  final directory = await getApplicationDocumentsDirectory();
  return directory.path;
}