Playlist 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. A playlist can contain up to 200 videos, and YouTube does not limit the number of playlists that each user creates. 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 - favorite videos - positively rated (liked) videos - watch history - watch later 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 playlistItems.list method to retrieve any of those lists. You can also add or remove items from those lists by calling the playlistItems.insert and playlistItems.delete methods.

Constructors

Playlist({PlaylistContentDetails? contentDetails, String? etag, String? id, String? kind, Map<String, PlaylistLocalization>? localizations, PlaylistPlayer? player, PlaylistSnippet? snippet, PlaylistStatus? status})
Playlist.fromJson(Map json_)

Properties

contentDetails PlaylistContentDetails?
The contentDetails object contains information like video count.
getter/setter pair
etag String?
Etag of this resource.
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
id String?
The ID that YouTube uses to uniquely identify the playlist.
getter/setter pair
kind String?
Identifies what kind of resource this is.
getter/setter pair
localizations Map<String, PlaylistLocalization>?
Localizations for different languages
getter/setter pair
player PlaylistPlayer?
The player object contains information that you would use to play the playlist in an embedded player.
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
snippet PlaylistSnippet?
The snippet object contains basic details about the playlist, such as its title and description.
getter/setter pair
status PlaylistStatus?
The status object contains status information for the playlist.
getter/setter pair

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
toString() String
A string representation of this object.
inherited

Operators

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