toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final commentCount = this.commentCount;
  final hiddenSubscriberCount = this.hiddenSubscriberCount;
  final subscriberCount = this.subscriberCount;
  final videoCount = this.videoCount;
  final viewCount = this.viewCount;
  return {
    'commentCount': ?commentCount,
    'hiddenSubscriberCount': ?hiddenSubscriberCount,
    'subscriberCount': ?subscriberCount,
    'videoCount': ?videoCount,
    'viewCount': ?viewCount,
  };
}