VideoFull constructor Null safety
- {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,
- List<
Video> ? clips, - List<
Video> ? sources, - List<
Video> ? refers, - List<
Video> ? simulcasts, - List<
Channel> ? mentions, - List<
Song> ? songs}
Returns a new VideoFull instance.
Implementation
VideoFull({
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,
this.clips,
this.sources,
this.refers,
this.simulcasts,
this.mentions,
this.songs,
}) : 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,
channel: channel,
songcount: songcount,
language: language,
);