An interface implemented by a webview if it supports muting audio.
Example
await webViewPrefab.WaitUntilInitialized();
var mutableWebView = webViewPrefab.WebView as IWithMutableAudio;
if (mutableWebView != null) {
mutableWebView.SetAudioMuted(true);
}