toJson method
Implementation
Map<String, dynamic> toJson() {
return {
'privKey': privKey,
'userInfo': userInfo?.toJson(),
'ed25519PrivKey': ed25519PrivKey,
'sessionId': sessionId,
'error': error,
'coreKitKey': coreKitKey,
'coreKitEd25519PrivKey': coreKitEd25519PrivKey
};
}