toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final bulletin = this.bulletin;
  final channelItem = this.channelItem;
  final comment = this.comment;
  final favorite = this.favorite;
  final like = this.like;
  final playlistItem = this.playlistItem;
  final promotedItem = this.promotedItem;
  final recommendation = this.recommendation;
  final social = this.social;
  final subscription = this.subscription;
  final upload = this.upload;
  return {
    'bulletin': ?bulletin,
    'channelItem': ?channelItem,
    'comment': ?comment,
    'favorite': ?favorite,
    'like': ?like,
    'playlistItem': ?playlistItem,
    'promotedItem': ?promotedItem,
    'recommendation': ?recommendation,
    'social': ?social,
    'subscription': ?subscription,
    'upload': ?upload,
  };
}