PriorVoter.fromJson constructor

PriorVoter.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory PriorVoter.fromJson(Map<String, dynamic> json) {
  return PriorVoter(
      authorizedPubkey: json["authorizedPubkey"],
      epochOfLastAuthorizedSwitch: json["epochOfLastAuthorizedSwitch"],
      targetEpoch: json["targetEpoch"]);
}