toJson method
Converts the object to a JSON representation.
Implementation
@override
Map<String, dynamic> toJson() {
return {
"signer_quorum": signerQuorum,
"signer_entries": (signerEntries?.isEmpty ?? true)
? null
: signerEntries!.map((e) => e.toJson()).toList(),
...super.toJson()
};
}