Add toString for KeyAttributes
This commit is contained in:
parent
9e641ba57d
commit
aba132058d
1 changed files with 5 additions and 0 deletions
|
@ -57,4 +57,9 @@ class KeyAttributes {
|
|||
|
||||
factory KeyAttributes.fromJson(String source) =>
|
||||
KeyAttributes.fromMap(json.decode(source));
|
||||
|
||||
@override
|
||||
String toString() {
|
||||
return 'KeyAttributes(kekSalt: $kekSalt, kekHash: $kekHash, kekHashSalt: $kekHashSalt, encryptedKey: $encryptedKey, encryptedKeyIV: $encryptedKeyIV)';
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue