Committee.fromJson constructor
Implementation
factory Committee.fromJson(Map<String, dynamic> json) {
return Committee(members: {
for (final i in (json["members"] as Map).entries)
Credential.fromJson(i.key): IntUtils.parse(i.value)
}, quorumQhreshold: UnitInterval.fromJson(json["quorum_threshold"]));
}