toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (channelId != null) 'channelId': channelId!,
  if (channelTitle != null) 'channelTitle': channelTitle!,
  if (defaultLanguage != null) 'defaultLanguage': defaultLanguage!,
  if (description != null) 'description': description!,
  if (localized != null) 'localized': localized!,
  if (publishedAt != null)
    'publishedAt': publishedAt!.toUtc().toIso8601String(),
  if (tags != null) 'tags': tags!,
  if (thumbnailVideoId != null) 'thumbnailVideoId': thumbnailVideoId!,
  if (thumbnails != null) 'thumbnails': thumbnails!,
  if (title != null) 'title': title!,
};