deleteEntranceSound abstract method

  1. @DELETE.new('/users/@me/entrance-sounds/{sound_id}')
Future<void> deleteEntranceSound({
  1. @Path.new('sound_id') required String soundId,
})

Delete an entrance sound.

Removes the sound from the library and clears any per-scope selections that pointed at it.

soundId - The sound id.

Implementation

@DELETE('/users/@me/entrance-sounds/{sound_id}')
Future<void> deleteEntranceSound({@Path('sound_id') required String soundId});