showFile method

void showFile(
  1. String path
)

切换文件

path 文件地址 https/http开头、文件格式结尾的地址,或者本地绝对路径

Implementation

void showFile(String path) {
  print("切换文件  $path");
  _methodChannel?.invokeMethod("showFile", path);
}