CurrentPlayAudioInfo constructor

CurrentPlayAudioInfo({
  1. required double progress,
  2. required AudioPlayInfo playInfo,
  3. required bool isCompleted,
  4. required bool isPaused,
})

Implementation

CurrentPlayAudioInfo({
  required this.progress,
  required this.playInfo,
  required this.isCompleted,
  required this.isPaused,
});