EncryptionKeyHistoryEntry.fromJson constructor

EncryptionKeyHistoryEntry.fromJson(
  1. 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,
    );