Future<int> getPlayPosition()
获取当前播放进度
返回
- 其他:播放进度 (毫秒)
- <0:方法调用失败,详见 ErrorCode。
Implementation
<int> getPlayPosition() {
return _methodChannel.invokeMethod("getPlayPosition");
}
Future
最近更新时间:2022-09-20 05:17:40
Future<int> getPlayPosition()
获取当前播放进度
返回
<int> getPlayPosition() {
return _methodChannel.invokeMethod("getPlayPosition");
}
Future