SystemMetaDataEncrypted constructor

SystemMetaDataEncrypted({
  1. List<String> secretForeignKeys = const [],
  2. Map<String, List<Delegation>> cryptedForeignKeys = const {},
  3. Map<String, List<Delegation>> delegations = const {},
  4. Map<String, List<Delegation>> encryptionKeys = const {},
  5. String? encryptedSelf = null,
})

Returns a new SystemMetaDataEncrypted instance.

Implementation

SystemMetaDataEncrypted({
  this.secretForeignKeys = const [],
  this.cryptedForeignKeys = const {},
  this.delegations = const {},
  this.encryptionKeys = const {},
  this.encryptedSelf = null
});