getPlayPosition

最近更新时间:2022-09-20 05:17:40

  Future<int> getPlayPosition()

获取当前播放进度

返回

  • 其他:播放进度 (毫秒)
  • <0:方法调用失败,详见 ErrorCode

Implementation

  
  Future<int> getPlayPosition() {
    return _methodChannel.invokeMethod("getPlayPosition");
  }