EncryptionKeyHistoryEntry.fromJson constructor
EncryptionKeyHistoryEntry.fromJson(
- Map json_
Implementation
EncryptionKeyHistoryEntry.fromJson(core.Map json_)
: this(
activationTime: json_['activationTime'] as core.String?,
encryptionKey: json_.containsKey('encryptionKey')
? EncryptionKey.fromJson(
json_['encryptionKey'] as core.Map<core.String, core.dynamic>,
)
: null,
);