fromJson static method
Implementation
static PollVoteStatistics? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return PollVoteStatistics(
voteGraph: StatisticalGraph.fromJson(tdMapFromJson(json['vote_graph'])),
);
}