libraryPathAsync property

Future<String> get libraryPathAsync

异步获取库文件路径

Returns 一个 Future 对象,表示异步操作的结果,返回库文件目录的路径。

Implementation

static Future<String> get libraryPathAsync async {
  await setup();
  return libraryPath;
}