toJson method
Converts the object to a JSON representation.
Implementation
@override
Map<String, dynamic> toJson() {
return {
"signer": {
"account": account,
"txn_signature": txnSignature,
"signing_pub_key": signingPubKey,
}
};
}