Playlists class

A playlist resource represents a YouTube playlist. A playlist is a collection of videos that can be viewed sequentially and shared with other users. By default, playlists are publicly visible to other users, but playlists can be public or private.

YouTube also uses playlists to identify special collections of videos for a channel, such as:

  • uploaded videos
  • positively rated (liked) videos To be more specific, these lists are associated with a channel, which is a collection of a person, group, or company's videos, playlists, and other YouTube information. You can retrieve the playlist IDs for each of these lists from the channel resource for a given channel.

You can then use the list() method to retrieve any of those lists. You can also add or remove items from those lists by calling the insert() and delete() methods.

Constructors

Playlists({required Dio dio, String? apiKey})

Properties

accept String
finalinherited
apiKey String?
final
contentType String
finalinherited
dio → Dio
final
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

buildParts(List<String> partList, String part) String
inherited
delete({required String id, String? onBehalfOfContentOwner, String? onBehalfOfContentOwnerChannel}) Future<void>
Deletes a playlist.
insert({String part = 'contentDetails,id,localizations,player,snippet,status', List<String> partList = const [], required Map<String, dynamic> body, String? onBehalfOfContentOwner, String? onBehalfOfContentOwnerChannel}) Future<Playlist>
Creates a playlist.
list({String part = 'contentDetails,id,localizations,player,snippet,status', List<String> partList = const [], String? channelId, String? id, bool? mine, int? maxResults, String? onBehalfOfContentOwner, String? onBehalfOfContentOwnerChannel, String? pageToken}) Future<PlaylistResponse>
Returns a collection of playlists that match the API request parameters. For example, you can retrieve all playlists that the authenticated user owns, or you can retrieve one or more playlists by their unique IDs.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited
update({String part = 'contentDetails,id,localizations,player,snippet,status', List<String> partList = const [], required Map<String, dynamic> body, String? onBehalfOfContentOwner, String? onBehalfOfContentOwnerChannel}) Future<Playlist>
Modifies a playlist. For example, you could change a playlist's title, description, or privacy status.

Operators

operator ==(Object other) bool
The equality operator.
inherited