unmute method

Future<void> unmute()

Implementation

Future<void> unmute() async {
  await _webViewController?.evaluateJavascript(source: '''
    window.postMessage({function: "unmute"}, "*");
  ''');
}