SignerListSet.fromJson constructor
Implementation
SignerListSet.fromJson(Map<String, dynamic> json)
: signerQuorum = json["signer_quorum"],
signerEntries = (json["signer_entries"] as List?)
?.map((e) => SignerEntry.fromJson(e))
.toList(),
super.json(json);