extStorageDir static method

Future<Directory?> extStorageDir()

获取外部存储目录(仅支持Android)

Implementation

static Future<Directory?> extStorageDir() async {
  return await getExternalStorageDirectory();
}