removeAtIndex method

Audio removeAtIndex(
  1. int index
)

Implementation

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