VideoStatsStatistics.fromJson constructor

VideoStatsStatistics.fromJson(
  1. Map json_
)

Implementation

VideoStatsStatistics.fromJson(core.Map json_)
  : this(
      commentCount: json_['commentCount'] as core.String?,
      likeCount: json_['likeCount'] as core.String?,
      viewCount: json_['viewCount'] as core.String?,
    );