registerWith static method

void registerWith(
  1. Registrar registrar
)

Registers this class as the default instance of TauPlatform.

Implementation

static void registerWith(Registrar registrar)
{
        TauPlayerWeb.registerWith(registrar);
        TauRecorderWeb.registerWith(registrar);
        importJsLibrary(url: "./howler/howler.js", flutterPluginName: "tau_web");
        importJsLibrary(url: "./src/tau_core.js", flutterPluginName: "tau_web");
        importJsLibrary(url: "./src/tau_core_player.js", flutterPluginName: "tau_web");
        importJsLibrary(url: "./src/tau_core_recorder.js", flutterPluginName: "tau_web");

}