load method

Future load()

Obtains a DynamicLibrary of libopus on the current platform.

On platforms where there is dart:ffi, the returned object is a dart:ffi DynamicLibrary, so it is safe to cast it.

On the web, where there is no dart:ffi, the returned object is a web_ffi DynamicLibrary, so it is safe to cast it.

Implementation

Future<dynamic> load() {
  throw UnimplementedError('load() has not been implemented.');
}