encryption property

Encryption? encryption

(Nullable) Indicates that a resource is encrypted/obfuscated and provides relevant information for decryption.

Implementation

Encryption? get encryption {
  if (otherProperties.containsKey("encrypted") &&
      otherProperties["encrypted"] is Map<String, dynamic>) {
    return Encryption.fromJSON(
        otherProperties["encrypted"] as Map<String, dynamic>);
  }
  return null;
}