getMusicCurrentPosInMS method

Future<int?> getMusicCurrentPosInMS(
  1. int id
)

获取背景音乐的当前播放进度(毫秒)

参数:

id 音乐轨道 ID

返回值: 如果此 API 调用成功,将返回当前播放时间(毫秒);否则,将返回 -1

不支持平台:

  • web

Implementation

Future<int?> getMusicCurrentPosInMS(int id) {
  return _channel.invokeMethod('getMusicCurrentPosInMS', {"id": id});
}