toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final country = this.country;
  final defaultLanguage = this.defaultLanguage;
  final defaultTab = this.defaultTab;
  final description = this.description;
  final featuredChannelsTitle = this.featuredChannelsTitle;
  final featuredChannelsUrls = this.featuredChannelsUrls;
  final keywords = this.keywords;
  final moderateComments = this.moderateComments;
  final profileColor = this.profileColor;
  final showBrowseView = this.showBrowseView;
  final showRelatedChannels = this.showRelatedChannels;
  final title = this.title;
  final trackingAnalyticsAccountId = this.trackingAnalyticsAccountId;
  final unsubscribedTrailer = this.unsubscribedTrailer;
  return {
    'country': ?country,
    'defaultLanguage': ?defaultLanguage,
    'defaultTab': ?defaultTab,
    'description': ?description,
    'featuredChannelsTitle': ?featuredChannelsTitle,
    'featuredChannelsUrls': ?featuredChannelsUrls,
    'keywords': ?keywords,
    'moderateComments': ?moderateComments,
    'profileColor': ?profileColor,
    'showBrowseView': ?showBrowseView,
    'showRelatedChannels': ?showRelatedChannels,
    'title': ?title,
    'trackingAnalyticsAccountId': ?trackingAnalyticsAccountId,
    'unsubscribedTrailer': ?unsubscribedTrailer,
  };
}