toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final encryptionAlgorithm = this.encryptionAlgorithm;
final encryptionState = this.encryptionState;
final keyLength = this.keyLength;
final maxKeys = this.maxKeys;
return {
'encryptionAlgorithm': ?encryptionAlgorithm,
'encryptionState': ?encryptionState,
'keyLength': ?keyLength,
'maxKeys': ?maxKeys,
};
}