insertVideoWH method

void insertVideoWH(
  1. String url,
  2. int width,
  3. int height
)

Implementation

void insertVideoWH(String url, int width, int height) {
  _controller?.evaluateJavascript(source: 'javascript:RE.prepareInsert();');
  _controller?.evaluateJavascript(
      source: "javascript:RE.insertVideoWH('$url', '$width', '$height');");
}