12 lines
264 B
Dart
12 lines
264 B
Dart
|
import '../repositories/audio_player_repository.dart';
|
||
|
|
||
|
class SeekToNext {
|
||
|
SeekToNext(this._audioPlayerRepository);
|
||
|
|
||
|
final AudioPlayerRepository _audioPlayerRepository;
|
||
|
|
||
|
Future<bool> call() async {
|
||
|
return await _audioPlayerRepository.seekToNext();
|
||
|
}
|
||
|
}
|