play method

Future<void> play()

Implementation

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