toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final channelId = this.channelId;
final channelTitle = this.channelTitle;
final description = this.description;
final liveBroadcastContent = this.liveBroadcastContent;
final publishedAt = this.publishedAt;
final thumbnails = this.thumbnails;
final title = this.title;
return {
'channelId': ?channelId,
'channelTitle': ?channelTitle,
'description': ?description,
'liveBroadcastContent': ?liveBroadcastContent,
'publishedAt': ?publishedAt?.toUtc().toIso8601String(),
'thumbnails': ?thumbnails,
'title': ?title,
};
}