AudioSessionWeb constructor

AudioSessionWeb(
  1. Registrar registrar
)

Implementation

AudioSessionWeb(Registrar registrar)
    : _channel = MethodChannel(
        'com.ryanheise.audio_session',
        const StandardMethodCodec(),
        registrar,
      ) {
  _channel.setMethodCallHandler(handleMethodCall);
}