renamePlaylist method
Used to rename a specific Playlist
Parameters:
- playlistIdis used to check if Playlist exist.
- newNameis used to add a new name to a Playlist.
Platforms:
| Android | IOS | Web | 
|---|---|---|
| ✔️ | ❌ | ❌ | 
See more about platforms support
Implementation
Future<bool> renamePlaylist(int playlistId, String newName) async {
  return renamePlaylist(playlistId, newName);
}