replay method
重新播放最后一次播放的视频
Implementation
Future<void> replay() async {
if (_lastPath != null && _lastSourceType != null) {
await play(path: _lastPath!, sourceType: _lastSourceType!);
}
}
重新播放最后一次播放的视频
Future<void> replay() async {
if (_lastPath != null && _lastSourceType != null) {
await play(path: _lastPath!, sourceType: _lastSourceType!);
}
}