setVidMps method

Future<void> setVidMps(
  1. Map<String, dynamic> mpsInfo
)

用vid和MPS信息来播放视频 可参考:https://help.aliyun.com/document_detail/53522.html?spm=5176.doc53534.2.5.mhSfOh

Implementation

Future<void> setVidMps(Map<String, dynamic> mpsInfo) async {
  return FlutterAliPlayerFactory.methodChannel
      .invokeMethod("setVidMps", wrapWithPlayerId(arg: mpsInfo));
}