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 (description != null) 'description': description!,
      if (groupId != null) 'groupId': groupId!,
      if (publishedAt != null)
        'publishedAt': publishedAt!.toUtc().toIso8601String(),
      if (thumbnails != null) 'thumbnails': thumbnails!,
      if (title != null) 'title': title!,
      if (type != null) 'type': type!,
    };