SearchResult.video constructor
const
SearchResult.video()
Metadata related to a search query result (video).
Implementation
const factory SearchResult.video(
/// Video ID.
VideoId id,
/// Video title.
String title,
/// Video author.
String author,
/// Video description snippet. (Part of the full description if too long)
String description,
/// Video duration as String, HH:MM:SS
String duration,
/// Video View Count
int viewCount,
/// Video thumbnail
List<Thumbnail> thumbnails,
/// Video upload date - As string: 5 years ago.
String? uploadDate,
/// True if this video is a live stream.
bool isLive,
/// Channel id
String channelId,
) = SearchVideo;