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