VideoWithComments(- {required String id,
- required String title,
- required VideoType type,
- String? topicId,
- String? publishedAt,
- required String availableAt,
- int? duration,
- required VideoStatus status,
- String? startScheduled,
- String? startActual,
- String? endActual,
- int? liveViewers,
- String? description,
- String? channelId,
- int? songcount,
- String? language,
- ChannelMin? channel}
)
Implementation
VideoWithComments({
required String id,
required String title,
required VideoType type,
String? topicId,
String? publishedAt,
required String availableAt,
int? duration,
required VideoStatus status,
String? startScheduled,
String? startActual,
String? endActual,
int? liveViewers,
String? description,
String? channelId,
int? songcount,
String? language,
required this.comments,
ChannelMin? channel,
}) : super(
id: id,
title: title,
type: type,
topicId: topicId,
publishedAt: publishedAt,
availableAt: availableAt,
duration: duration,
status: status,
startScheduled: startScheduled,
startActual: startActual,
endActual: endActual,
liveViewers: liveViewers,
description: description,
channelId: channelId,
songcount: songcount,
language: language,
channel: channel,
);