SecurityOptions constructor

const SecurityOptions({
  1. SecurityLevel level = SecurityLevel.basic,
  2. bool enableEncryption = false,
  3. bool enableDigitalSignature = false,
  4. bool enableAccessControl = false,
  5. List<String>? allowedUsers,
  6. List<String>? forbiddenMimeTypes,
  7. bool enableAuditLogging = false,
  8. Duration? accessExpiry,
})

Implementation

const SecurityOptions({
  this.level = SecurityLevel.basic,
  this.enableEncryption = false,
  this.enableDigitalSignature = false,
  this.enableAccessControl = false,
  this.allowedUsers,
  this.forbiddenMimeTypes,
  this.enableAuditLogging = false,
  this.accessExpiry,
});