NodeStats.fromMap constructor
Implementation
factory NodeStats.fromMap(Map<String, dynamic> json) => NodeStats(
blockMinedCount: json["block_mined_count"],
blockProposedCount: json["block_proposed_count"],
commitsCount: json["commits_count"],
commitsProposedCount: json["commits_proposed_count"],
drEligibilityCount: json["dr_eligibility_count"],
lastBlockProposed: json["last_block_proposed"],
slashedCount: json["slashed_count"],
);