removeAtIndex method

Audio removeAtIndex(
  1. int index
)

Implementation

Audio removeAtIndex(int index) {
  final removedAudio = audios.removeAt(index);
  super.currentlyOpenedIn.forEach((playerEditor) {
    playerEditor.onAudioRemovedAt(index);
  });
  return removedAudio;
}