open static method

FutureOr<DynamicLibrary> open({
  1. required String path,
  2. String? moduleName,
  3. dynamic moduleLoader,
  4. dynamic wasmType,
  5. dynamic useAsGlobal,
})

General Library Documentation Undocument By General Corporation & Global Corporation & General Developer

Implementation

static FutureOr<DynamicLibrary> open({
  required String path,
  String? moduleName,
  dynamic moduleLoader,
  dynamic wasmType,
  dynamic useAsGlobal,
}) async {
  // ignore: await_only_futures
  return await DynamicLibrary.open(path);
}