ActiveVote.fromJson constructor
Implementation
factory ActiveVote.fromJson(Map<String, dynamic> json) => ActiveVote(
voter: json['voter'],
rshares: json['rshares'],
percent: json['percent'],
reputation: json['reputation'],
time: json['time'],
weight: json['weight'],
);