load method

Future load()

Opens the shared opus library included in this plugin.

Implementation

Future<dynamic> load() async {
  String libPath = await _copyFiles();
  return DynamicLibrary.open(libPath);
}