isPlaying method
播放器是否正在播放中
返回值:
- 1: 正在播放中
- 0: 已经停止播放
Implementation
Future<V2TXLiveCode> isPlaying() async {
var result = await _channel.invokeMethod('isPlaying', {});
return _liveCodeWithResult(result);
}
播放器是否正在播放中
返回值:
Future<V2TXLiveCode> isPlaying() async {
var result = await _channel.invokeMethod('isPlaying', {});
return _liveCodeWithResult(result);
}