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. 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 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.

Annotations
  • @JsonSerializable()

Constructors

Playlist({required String kind, required String etag, required String id, Snippet? snippet, Status? status, ContentDetails? contentDetails, Player? player, dynamic localizations})
Playlist.fromJson(Map<String, dynamic> json)
factory

Properties

contentDetails → ContentDetails?
The ContentDetails object contains information about the playlist content, including the number of videos in the playlist.
final
etag String
The Etag of this resource.
finalinherited
hashCode int
The hash code for this object.
no setterinherited
id String
The ID that YouTube uses to uniquely identify the playlist.
final
kind String
Identifies the API resource's type. The value will be youtube#searchListResponse.
finalinherited
localizations → dynamic
The localizations object encapsulates translations of the playlist's metadata.
final
player → Player?
The Player object contains information that you would use to play the playlist in an embedded player.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
snippet → Snippet?
The Snippet object contains basic details about the playlist, such as its title and description.
final
status → Status?
The Status object contains status information for the playlist.
final

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.
override

Operators

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