appSupportDir static method

Future<Directory> appSupportDir()

获取应用支持目录 使用示例 void example() { PPath.appSupportDir(); }

Implementation

static Future<Directory> appSupportDir() async {
  return await getApplicationSupportDirectory();
}