ChannelStatistics.fromJson constructor

ChannelStatistics.fromJson(
  1. Map json_
)

Implementation

ChannelStatistics.fromJson(core.Map json_)
    : this(
        commentCount: json_['commentCount'] as core.String?,
        hiddenSubscriberCount: json_['hiddenSubscriberCount'] as core.bool?,
        subscriberCount: json_['subscriberCount'] as core.String?,
        videoCount: json_['videoCount'] as core.String?,
        viewCount: json_['viewCount'] as core.String?,
      );